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, or the list of records to delete from Amazon Personalize.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#data_location ⇒ String
For dataset import jobs, 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
For dataset import jobs, the path to the Amazon S3 bucket where the data that you want to upload to your dataset is stored. For data deletion jobs, the path to the Amazon S3 bucket that stores the list of records to delete.
For example:
s3://bucket-name/folder-name/fileName.csv
If your CSV files are in a folder in your Amazon S3 bucket and you
want your import job or data deletion job to consider multiple
files, you can specify the path to the folder. With a data deletion
job, Amazon Personalize uses all files in the folder and any sub
folder. Use the following syntax with a / after the folder name:
s3://bucket-name/folder-name/
2019 2020 2021 2022 2023 |
# File 'gems/aws-sdk-personalize/lib/aws-sdk-personalize/types.rb', line 2019 class DataSource < Struct.new( :data_location) SENSITIVE = [] include Aws::Structure end |