Class: Aws::ForecastService::Types::DataSource
- Inherits:
-
Struct
- Object
- Struct
- Aws::ForecastService::Types::DataSource
- Defined in:
- gems/aws-sdk-forecastservice/lib/aws-sdk-forecastservice/types.rb
Overview
Note:
When making an API call, you may pass DataSource data as a hash:
{
s3_config: { # required
path: "S3Path", # required
role_arn: "Arn", # required
kms_key_arn: "KMSKeyArn",
},
}
The source of your data, an AWS Identity and Access Management (IAM) role that allows Amazon Forecast to access the data and, optionally, an AWS Key Management Service (KMS) key.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#s3_config ⇒ Types::S3Config
The path to the data stored in an Amazon Simple Storage Service (Amazon S3) bucket along with the credentials to access the data.
Instance Attribute Details
#s3_config ⇒ Types::S3Config
The path to the data stored in an Amazon Simple Storage Service (Amazon S3) bucket along with the credentials to access the data.
1981 1982 1983 1984 1985 |
# File 'gems/aws-sdk-forecastservice/lib/aws-sdk-forecastservice/types.rb', line 1981 class DataSource < Struct.new( :s3_config) SENSITIVE = [] include Aws::Structure end |