Class: Aws::Personalize::Types::DataSource
- Inherits:
-
Struct
- Object
- Struct
- Aws::Personalize::Types::DataSource
- Defined in:
- gems/aws-sdk-personalize/lib/aws-sdk-personalize/types.rb
Overview
Describes the data source that contains the data to upload to a dataset.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#data_location ⇒ String
The path to the Amazon S3 bucket where the data that you want to upload to your dataset is stored.
Instance Attribute Details
#data_location ⇒ String
The path to the Amazon S3 bucket where the data that you want to upload to your dataset is stored. For example:
s3://bucket-name/folder-name/
1699 1700 1701 1702 1703 |
# File 'gems/aws-sdk-personalize/lib/aws-sdk-personalize/types.rb', line 1699 class DataSource < Struct.new( :data_location) SENSITIVE = [] include Aws::Structure end |