Class: Aws::SageMaker::Types::AutoMLDataSource
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::AutoMLDataSource
- Defined in:
- gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb
Overview
Note:
When making an API call, you may pass AutoMLDataSource data as a hash:
{
s3_data_source: { # required
s3_data_type: "ManifestFile", # required, accepts ManifestFile, S3Prefix
s3_uri: "S3Uri", # required
},
}
The data source for the Autopilot job.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#s3_data_source ⇒ Types::AutoMLS3DataSource
The Amazon S3 location of the input data.
Instance Attribute Details
#s3_data_source ⇒ Types::AutoMLS3DataSource
The Amazon S3 location of the input data.
1885 1886 1887 1888 1889 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 1885 class AutoMLDataSource < Struct.new( :s3_data_source) SENSITIVE = [] include Aws::Structure end |