Class: Aws::SageMaker::Types::AutoMLS3DataSource
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::AutoMLS3DataSource
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-sagemaker/types.rb
Overview
The Amazon S3 data source.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#s3_data_type ⇒ String
The data type.
-
#s3_uri ⇒ String
The URL to the Amazon S3 data source.
Instance Attribute Details
#s3_data_type ⇒ String
The data type.
A ManifestFile should have the format shown below:
‘[ “s3://DOC-EXAMPLE-BUCKET/DOC-EXAMPLE-FOLDER/DOC-EXAMPLE-PREFIX/”, `
‘“DOC-EXAMPLE-RELATIVE-PATH/DOC-EXAMPLE-FOLDER/DATA-1”,`
‘“DOC-EXAMPLE-RELATIVE-PATH/DOC-EXAMPLE-FOLDER/DATA-2”,`
‘… “DOC-EXAMPLE-RELATIVE-PATH/DOC-EXAMPLE-FOLDER/DATA-N” ]`
An S3Prefix should have the following format:
s3://DOC-EXAMPLE-BUCKET/DOC-EXAMPLE-FOLDER-OR-FILE
2338 2339 2340 2341 2342 2343 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 2338 class AutoMLS3DataSource < Struct.new( :s3_data_type, :s3_uri) SENSITIVE = [] include Aws::Structure end |
#s3_uri ⇒ String
The URL to the Amazon S3 data source.
2338 2339 2340 2341 2342 2343 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 2338 class AutoMLS3DataSource < Struct.new( :s3_data_type, :s3_uri) SENSITIVE = [] include Aws::Structure end |