Class: Aws::SageMaker::Types::ProcessingOutputConfig

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-sagemaker/types.rb

Overview

Configuration for uploading output from the processing container.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#kms_key_idString

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.

Returns:

  • (String)


33207
33208
33209
33210
33211
33212
# File 'lib/aws-sdk-sagemaker/types.rb', line 33207

class ProcessingOutputConfig < Struct.new(
  :outputs,
  :kms_key_id)
  SENSITIVE = []
  include Aws::Structure
end

#outputsArray<Types::ProcessingOutput>

An array of outputs configuring the data to upload from the processing container.

Returns:



33207
33208
33209
33210
33211
33212
# File 'lib/aws-sdk-sagemaker/types.rb', line 33207

class ProcessingOutputConfig < Struct.new(
  :outputs,
  :kms_key_id)
  SENSITIVE = []
  include Aws::Structure
end