Class: Aws::SageMaker::Types::ProcessingOutputConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::ProcessingOutputConfig
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-sagemaker/types.rb
Overview
Note:
When making an API call, you may pass ProcessingOutputConfig data as a hash:
{
outputs: [ # required
{
output_name: "String", # required
s3_output: { # required
s3_uri: "S3Uri", # required
local_path: "ProcessingLocalPath", # required
s3_upload_mode: "Continuous", # required, accepts Continuous, EndOfJob
},
},
],
kms_key_id: "KmsKeyId",
}
The output configuration for the processing job.
Instance Attribute Summary collapse
-
#kms_key_id ⇒ String
The AWS Key Management Service (AWS KMS) key that Amazon SageMaker uses to encrypt the processing job output.
-
#outputs ⇒ Array<Types::ProcessingOutput>
Output configuration information for a processing job.
Instance Attribute Details
#kms_key_id ⇒ String
The AWS Key Management Service (AWS KMS) key that Amazon SageMaker uses to encrypt the processing job output. ‘KmsKeyId` can be an ID of a KMS key, ARN of a KMS key, alias of a KMS key, or alias of a KMS key. The `KmsKeyId` is applied to all outputs.
16033 16034 16035 16036 16037 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 16033 class ProcessingOutputConfig < Struct.new( :outputs, :kms_key_id) include Aws::Structure end |
#outputs ⇒ Array<Types::ProcessingOutput>
Output configuration information for a processing job.
16033 16034 16035 16036 16037 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 16033 class ProcessingOutputConfig < Struct.new( :outputs, :kms_key_id) include Aws::Structure end |