Class: Aws::SageMaker::Types::DataSource
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::DataSource
- Defined in:
- gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb
Overview
Note:
When making an API call, you may pass DataSource data as a hash:
{
s3_data_source: {
s3_data_type: "ManifestFile", # required, accepts ManifestFile, S3Prefix, AugmentedManifestFile
s3_uri: "S3Uri", # required
s3_data_distribution_type: "FullyReplicated", # accepts FullyReplicated, ShardedByS3Key
attribute_names: ["AttributeName"],
},
file_system_data_source: {
file_system_id: "FileSystemId", # required
file_system_access_mode: "rw", # required, accepts rw, ro
file_system_type: "EFS", # required, accepts EFS, FSxLustre
directory_path: "DirectoryPath", # required
},
}
Describes the location of the channel data.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#file_system_data_source ⇒ Types::FileSystemDataSource
The file system that is associated with a channel.
-
#s3_data_source ⇒ Types::S3DataSource
The S3 location of the data source that is associated with a channel.
Instance Attribute Details
#file_system_data_source ⇒ Types::FileSystemDataSource
The file system that is associated with a channel.
9116 9117 9118 9119 9120 9121 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 9116 class DataSource < Struct.new( :s3_data_source, :file_system_data_source) SENSITIVE = [] include Aws::Structure end |
#s3_data_source ⇒ Types::S3DataSource
The S3 location of the data source that is associated with a channel.
9116 9117 9118 9119 9120 9121 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 9116 class DataSource < Struct.new( :s3_data_source, :file_system_data_source) SENSITIVE = [] include Aws::Structure end |