[][src]Struct rusoto_sagemaker::ProcessingOutput

pub struct ProcessingOutput {
    pub app_managed: Option<bool>,
    pub feature_store_output: Option<ProcessingFeatureStoreOutput>,
    pub output_name: String,
    pub s3_output: Option<ProcessingS3Output>,
}

Describes the results of a processing job. The processing output must specify exactly one of either S3Output or FeatureStoreOutput types.

Fields

app_managed: Option<bool>

When True, output operations such as data upload are managed natively by the processing job application. When False (default), output operations are managed by Amazon SageMaker.

feature_store_output: Option<ProcessingFeatureStoreOutput>

Configuration for processing job outputs in Amazon SageMaker Feature Store. This processing output type is only supported when AppManaged is specified.

output_name: String

The name for the processing job output.

s3_output: Option<ProcessingS3Output>

Configuration for processing job outputs in Amazon S3.

Trait Implementations

impl Clone for ProcessingOutput[src]

impl Debug for ProcessingOutput[src]

impl Default for ProcessingOutput[src]

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

impl PartialEq<ProcessingOutput> for ProcessingOutput[src]

impl Serialize for ProcessingOutput[src]

impl StructuralPartialEq for ProcessingOutput[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, 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.