Class: Aws::SageMaker::Types::ProcessingOutputConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::ProcessingOutputConfig
- Defined in:
- gems/aws-sdk-sagemaker/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: {
s3_uri: "S3Uri", # required
local_path: "ProcessingLocalPath", # required
s3_upload_mode: "Continuous", # required, accepts Continuous, EndOfJob
},
feature_store_output: {
feature_group_name: "FeatureGroupName", # required
},
app_managed: false,
},
],
kms_key_id: "KmsKeyId",
}
Configuration for uploading output from the processing container.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#kms_key_id ⇒ String
The Amazon Web Services Key Management Service (Amazon Web Services KMS) key that Amazon SageMaker uses to encrypt the processing job output.
-
#outputs ⇒ Array<Types::ProcessingOutput>
An array of outputs configuring the data to upload from the processing container.
Instance Attribute Details
#kms_key_id ⇒ String
The Amazon Web Services Key Management Service (Amazon Web Services
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.
33688 33689 33690 33691 33692 33693 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 33688 class ProcessingOutputConfig < Struct.new( :outputs, :kms_key_id) SENSITIVE = [] include Aws::Structure end |
#outputs ⇒ Array<Types::ProcessingOutput>
An array of outputs configuring the data to upload from the processing container.
33688 33689 33690 33691 33692 33693 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 33688 class ProcessingOutputConfig < Struct.new( :outputs, :kms_key_id) SENSITIVE = [] include Aws::Structure end |