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 ==
.impl StructuralPartialEq for ProcessingOutputConfig
Auto Trait Implementations§
impl Freeze for ProcessingOutputConfig
impl RefUnwindSafe for ProcessingOutputConfig
impl Send for ProcessingOutputConfig
impl Sync for ProcessingOutputConfig
impl Unpin for ProcessingOutputConfig
impl UnwindSafe for ProcessingOutputConfig
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more