Struct aws_sdk_sagemaker::model::processing_output_config::Builder
source · pub struct Builder { /* private fields */ }
Expand description
A builder for ProcessingOutputConfig
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn outputs(self, input: ProcessingOutput) -> Self
pub fn outputs(self, input: ProcessingOutput) -> Self
Appends an item to outputs
.
To override the contents of this collection use set_outputs
.
An array of outputs configuring the data to upload from the processing container.
sourcepub fn set_outputs(self, input: Option<Vec<ProcessingOutput>>) -> Self
pub fn set_outputs(self, input: Option<Vec<ProcessingOutput>>) -> Self
An array of outputs configuring the data to upload from the processing container.
sourcepub fn kms_key_id(self, input: impl Into<String>) -> Self
pub fn kms_key_id(self, input: impl Into<String>) -> Self
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.
sourcepub fn set_kms_key_id(self, input: Option<String>) -> Self
pub fn set_kms_key_id(self, input: Option<String>) -> Self
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.
sourcepub fn build(self) -> ProcessingOutputConfig
pub fn build(self) -> ProcessingOutputConfig
Consumes the builder and constructs a ProcessingOutputConfig
.