Class: Aws::ForecastService::Types::CreatePredictorBacktestExportJobRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::ForecastService::Types::CreatePredictorBacktestExportJobRequest
- Defined in:
- gems/aws-sdk-forecastservice/lib/aws-sdk-forecastservice/types.rb
Overview
When making an API call, you may pass CreatePredictorBacktestExportJobRequest data as a hash:
{
predictor_backtest_export_job_name: "Name", # required
predictor_arn: "Arn", # required
destination: { # required
s3_config: { # required
path: "S3Path", # required
role_arn: "Arn", # required
kms_key_arn: "KMSKeyArn",
},
},
tags: [
{
key: "TagKey", # required
value: "TagValue", # required
},
],
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#destination ⇒ Types::DataDestination
The destination for an export job.
-
#predictor_arn ⇒ String
The Amazon Resource Name (ARN) of the predictor that you want to export.
-
#predictor_backtest_export_job_name ⇒ String
The name for the backtest export job.
-
#tags ⇒ Array<Types::Tag>
Optional metadata to help you categorize and organize your backtests.
Instance Attribute Details
#destination ⇒ Types::DataDestination
The destination for an export job. Provide an S3 path, an AWS Identity and Access Management (IAM) role that allows Amazon Forecast to access the location, and an AWS Key Management Service (KMS) key (optional).
1570 1571 1572 1573 1574 1575 1576 1577 |
# File 'gems/aws-sdk-forecastservice/lib/aws-sdk-forecastservice/types.rb', line 1570 class CreatePredictorBacktestExportJobRequest < Struct.new( :predictor_backtest_export_job_name, :predictor_arn, :destination, :tags) SENSITIVE = [] include Aws::Structure end |
#predictor_arn ⇒ String
The Amazon Resource Name (ARN) of the predictor that you want to export.
1570 1571 1572 1573 1574 1575 1576 1577 |
# File 'gems/aws-sdk-forecastservice/lib/aws-sdk-forecastservice/types.rb', line 1570 class CreatePredictorBacktestExportJobRequest < Struct.new( :predictor_backtest_export_job_name, :predictor_arn, :destination, :tags) SENSITIVE = [] include Aws::Structure end |
#predictor_backtest_export_job_name ⇒ String
The name for the backtest export job.
1570 1571 1572 1573 1574 1575 1576 1577 |
# File 'gems/aws-sdk-forecastservice/lib/aws-sdk-forecastservice/types.rb', line 1570 class CreatePredictorBacktestExportJobRequest < Struct.new( :predictor_backtest_export_job_name, :predictor_arn, :destination, :tags) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Array<Types::Tag>
Optional metadata to help you categorize and organize your backtests. Each tag consists of a key and an optional value, both of which you define. Tag keys and values are case sensitive.
The following restrictions apply to tags:
For each resource, each tag key must be unique and each tag key must have one value.
Maximum number of tags per resource: 50.
Maximum key length: 128 Unicode characters in UTF-8.
Maximum value length: 256 Unicode characters in UTF-8.
Accepted characters: all letters and numbers, spaces representable in UTF-8, and + - = . _ : / @. If your tagging schema is used across other services and resources, the character restrictions of those services also apply.
Key prefixes cannot include any upper or lowercase combination of
aws:
orAWS:
. Values can have this prefix. If a tag value hasaws
as its prefix but the key does not, Forecast considers it to be a user tag and will count against the limit of 50 tags. Tags with only the key prefix ofaws
do not count against your tags per resource limit. You cannot edit or delete tag keys with this prefix.
1570 1571 1572 1573 1574 1575 1576 1577 |
# File 'gems/aws-sdk-forecastservice/lib/aws-sdk-forecastservice/types.rb', line 1570 class CreatePredictorBacktestExportJobRequest < Struct.new( :predictor_backtest_export_job_name, :predictor_arn, :destination, :tags) SENSITIVE = [] include Aws::Structure end |