Struct aws_sdk_sagemaker::types::ProcessingOutputConfig
source · #[non_exhaustive]pub struct ProcessingOutputConfig {
pub outputs: Option<Vec<ProcessingOutput>>,
pub kms_key_id: Option<String>,
}
Expand description
Configuration for uploading output from the processing container.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.outputs: Option<Vec<ProcessingOutput>>
An array of outputs configuring the data to upload from the processing container.
kms_key_id: Option<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.
Implementations§
source§impl ProcessingOutputConfig
impl ProcessingOutputConfig
sourcepub fn outputs(&self) -> &[ProcessingOutput]
pub fn outputs(&self) -> &[ProcessingOutput]
An array of outputs configuring the data to upload from the processing container.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .outputs.is_none()
.
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() -> ProcessingOutputConfigBuilder
pub fn builder() -> ProcessingOutputConfigBuilder
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
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ProcessingOutputConfig
impl Debug for ProcessingOutputConfig
source§impl PartialEq for ProcessingOutputConfig
impl PartialEq for ProcessingOutputConfig
source§fn eq(&self, other: &ProcessingOutputConfig) -> bool
fn eq(&self, other: &ProcessingOutputConfig) -> bool
self
and other
values to be equal, and is used
by ==
.