Class: Aws::SageMaker::Types::TransformDataSource
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::TransformDataSource
- Defined in:
- gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb
Overview
Note:
When making an API call, you may pass TransformDataSource data as a hash:
{
s3_data_source: { # required
s3_data_type: "ManifestFile", # required, accepts ManifestFile, S3Prefix, AugmentedManifestFile
s3_uri: "S3Uri", # required
},
}
Describes the location of the channel data.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#s3_data_source ⇒ Types::TransformS3DataSource
The S3 location of the data source that is associated with a channel.
Instance Attribute Details
#s3_data_source ⇒ Types::TransformS3DataSource
The S3 location of the data source that is associated with a channel.
38764 38765 38766 38767 38768 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 38764 class TransformDataSource < Struct.new( :s3_data_source) SENSITIVE = [] include Aws::Structure end |