Class: Aws::ForecastService::Types::DataDestination
- Inherits:
-
Struct
- Object
- Struct
- Aws::ForecastService::Types::DataDestination
- Defined in:
- gems/aws-sdk-forecastservice/lib/aws-sdk-forecastservice/types.rb
Overview
Note:
When making an API call, you may pass DataDestination data as a hash:
{
s3_config: { # required
path: "S3Path", # required
role_arn: "Arn", # required
kms_key_arn: "KMSKeyArn",
},
}
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).
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#s3_config ⇒ Types::S3Config
The path to an Amazon Simple Storage Service (Amazon S3) bucket along with the credentials to access the bucket.
Instance Attribute Details
#s3_config ⇒ Types::S3Config
The path to an Amazon Simple Storage Service (Amazon S3) bucket along with the credentials to access the bucket.
2035 2036 2037 2038 2039 |
# File 'gems/aws-sdk-forecastservice/lib/aws-sdk-forecastservice/types.rb', line 2035 class DataDestination < Struct.new( :s3_config) SENSITIVE = [] include Aws::Structure end |