#[non_exhaustive]pub struct ProcessingOutputConfigBuilder { /* private fields */ }
Expand description
A builder for ProcessingOutputConfig
.
Implementations§
source§impl ProcessingOutputConfigBuilder
impl ProcessingOutputConfigBuilder
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
.
Trait Implementations§
source§impl Clone for ProcessingOutputConfigBuilder
impl Clone for ProcessingOutputConfigBuilder
source§fn clone(&self) -> ProcessingOutputConfigBuilder
fn clone(&self) -> ProcessingOutputConfigBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for ProcessingOutputConfigBuilder
impl Default for ProcessingOutputConfigBuilder
source§fn default() -> ProcessingOutputConfigBuilder
fn default() -> ProcessingOutputConfigBuilder
source§impl PartialEq<ProcessingOutputConfigBuilder> for ProcessingOutputConfigBuilder
impl PartialEq<ProcessingOutputConfigBuilder> for ProcessingOutputConfigBuilder
source§fn eq(&self, other: &ProcessingOutputConfigBuilder) -> bool
fn eq(&self, other: &ProcessingOutputConfigBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.