Class: Aws::Personalize::Types::DataSource

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-personalize/types.rb

Overview

Note:

When making an API call, you may pass DataSource data as a hash:

{
  data_location: "S3Location",
}

Describes the data source that contains the data to upload to a dataset.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#data_locationString

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/training-data.csv`

Returns:

  • (String)


1264
1265
1266
1267
1268
# File 'lib/aws-sdk-personalize/types.rb', line 1264

class DataSource < Struct.new(
  :data_location)
  SENSITIVE = []
  include Aws::Structure
end