[][src]Struct rusoto_sagemaker::ProcessingOutputConfig

pub struct ProcessingOutputConfig {
    pub kms_key_id: Option<String>,
    pub outputs: Vec<ProcessingOutput>,
}

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

impl Clone for ProcessingOutputConfig[src]

impl Debug for ProcessingOutputConfig[src]

impl Default for ProcessingOutputConfig[src]

impl<'de> Deserialize<'de> for ProcessingOutputConfig[src]

impl PartialEq<ProcessingOutputConfig> for ProcessingOutputConfig[src]

impl Serialize for ProcessingOutputConfig[src]

impl StructuralPartialEq for ProcessingOutputConfig[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.