[][src]Struct rusoto_sagemaker::ProcessingS3Output

pub struct ProcessingS3Output {
    pub local_path: String,
    pub s3_upload_mode: String,
    pub s3_uri: String,
}

Configuration for processing job outputs in Amazon S3.

Fields

local_path: String

The local path to the Amazon S3 bucket where you want Amazon SageMaker to save the results of an processing job. LocalPath is an absolute path to the input data.

s3_upload_mode: String

Whether to upload the results of the processing job continuously or after the job completes.

s3_uri: String

A URI that identifies the Amazon S3 bucket where you want Amazon SageMaker to save the results of a processing job.

Trait Implementations

impl Clone for ProcessingS3Output[src]

impl Debug for ProcessingS3Output[src]

impl Default for ProcessingS3Output[src]

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

impl PartialEq<ProcessingS3Output> for ProcessingS3Output[src]

impl Serialize for ProcessingS3Output[src]

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