Class: Aws::SageMaker::Types::ProcessingInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::ProcessingInput
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-sagemaker/types.rb
Overview
Note:
When making an API call, you may pass ProcessingInput data as a hash:
{
input_name: "String", # required
s3_input: { # required
s3_uri: "S3Uri", # required
local_path: "ProcessingLocalPath", # required
s3_data_type: "ManifestFile", # required, accepts ManifestFile, S3Prefix
s3_input_mode: "Pipe", # required, accepts Pipe, File
s3_data_distribution_type: "FullyReplicated", # accepts FullyReplicated, ShardedByS3Key
s3_compression_type: "None", # accepts None, Gzip
},
}
The inputs for a processing job.
Instance Attribute Summary collapse
-
#input_name ⇒ String
The name of the inputs for the processing job.
-
#s3_input ⇒ Types::ProcessingS3Input
The S3 inputs for the processing job.
Instance Attribute Details
#input_name ⇒ String
The name of the inputs for the processing job.
15914 15915 15916 15917 15918 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 15914 class ProcessingInput < Struct.new( :input_name, :s3_input) include Aws::Structure end |
#s3_input ⇒ Types::ProcessingS3Input
The S3 inputs for the processing job.
15914 15915 15916 15917 15918 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 15914 class ProcessingInput < Struct.new( :input_name, :s3_input) include Aws::Structure end |