Class: Aws::SageMaker::Types::ProcessingOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::ProcessingOutput
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-sagemaker/types.rb
Overview
Note:
When making an API call, you may pass ProcessingOutput data as a hash:
{
output_name: "String", # required
s3_output: { # required
s3_uri: "S3Uri", # required
local_path: "ProcessingLocalPath", # required
s3_upload_mode: "Continuous", # required, accepts Continuous, EndOfJob
},
}
Describes the results of a processing job.
Instance Attribute Summary collapse
-
#output_name ⇒ String
The name for the processing job output.
-
#s3_output ⇒ Types::ProcessingS3Output
Configuration for processing job outputs in Amazon S3.
Instance Attribute Details
#output_name ⇒ String
The name for the processing job output.
15995 15996 15997 15998 15999 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 15995 class ProcessingOutput < Struct.new( :output_name, :s3_output) include Aws::Structure end |
#s3_output ⇒ Types::ProcessingS3Output
Configuration for processing job outputs in Amazon S3.
15995 15996 15997 15998 15999 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 15995 class ProcessingOutput < Struct.new( :output_name, :s3_output) include Aws::Structure end |