Class: Aws::SageMaker::Types::AutoMLS3DataSource

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

Overview

Note:

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

{
  s3_data_type: "ManifestFile", # required, accepts ManifestFile, S3Prefix
  s3_uri: "S3Uri", # required
}

The Amazon S3 data source.

Instance Attribute Summary collapse

Instance Attribute Details

#s3_data_typeString

The data type.

Returns:

  • (String)


1237
1238
1239
1240
1241
# File 'lib/aws-sdk-sagemaker/types.rb', line 1237

class AutoMLS3DataSource < Struct.new(
  :s3_data_type,
  :s3_uri)
  include Aws::Structure
end

#s3_uriString

The URL to the Amazon S3 data source.

Returns:

  • (String)


1237
1238
1239
1240
1241
# File 'lib/aws-sdk-sagemaker/types.rb', line 1237

class AutoMLS3DataSource < Struct.new(
  :s3_data_type,
  :s3_uri)
  include Aws::Structure
end