Class: Aws::SageMaker::Types::AutoMLS3DataSource
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::AutoMLS3DataSource
- Defined in:
- gems/aws-sdk-sagemaker/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.
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.
2177 2178 2179 2180 2181 2182 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 2177 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.
2177 2178 2179 2180 2181 2182 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 2177 class AutoMLS3DataSource < Struct.new( :s3_data_type, :s3_uri) SENSITIVE = [] include Aws::Structure end |