Struct aws_sdk_sagemaker::model::ProcessingOutputConfig
source · #[non_exhaustive]pub struct ProcessingOutputConfig { /* private fields */ }
Expand description
Configuration for uploading output from the processing container.
Implementations§
source§impl ProcessingOutputConfig
impl ProcessingOutputConfig
sourcepub fn outputs(&self) -> Option<&[ProcessingOutput]>
pub fn outputs(&self) -> Option<&[ProcessingOutput]>
An array of outputs configuring the data to upload from the processing container.
sourcepub fn kms_key_id(&self) -> Option<&str>
pub fn kms_key_id(&self) -> Option<&str>
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.
source§impl ProcessingOutputConfig
impl ProcessingOutputConfig
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ProcessingOutputConfig
.
Trait Implementations§
source§impl Clone for ProcessingOutputConfig
impl Clone for ProcessingOutputConfig
source§fn clone(&self) -> ProcessingOutputConfig
fn clone(&self) -> ProcessingOutputConfig
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for ProcessingOutputConfig
impl Debug for ProcessingOutputConfig
source§impl PartialEq<ProcessingOutputConfig> for ProcessingOutputConfig
impl PartialEq<ProcessingOutputConfig> for ProcessingOutputConfig
source§fn eq(&self, other: &ProcessingOutputConfig) -> bool
fn eq(&self, other: &ProcessingOutputConfig) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.