pub struct ProcessingOutputConfig {
pub kms_key_id: Option<String>,
pub outputs: Vec<ProcessingOutput>,
}
Expand description
The output configuration for the processing job.
Fields§
§kms_key_id: Option<String>
The AWS Key Management Service (AWS 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.
outputs: Vec<ProcessingOutput>
Output configuration information for a processing job.
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 Default for ProcessingOutputConfig
impl Default for ProcessingOutputConfig
Source§fn default() -> ProcessingOutputConfig
fn default() -> ProcessingOutputConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ProcessingOutputConfig
impl<'de> Deserialize<'de> for ProcessingOutputConfig
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ProcessingOutputConfig
impl PartialEq for ProcessingOutputConfig
Source§impl Serialize for ProcessingOutputConfig
impl Serialize for ProcessingOutputConfig
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
Mutably borrows from an owned value. Read more