[][src]Struct rusoto_sagemaker::MonitoringS3Output

pub struct MonitoringS3Output {
    pub local_path: String,
    pub s3_upload_mode: Option<String>,
    pub s3_uri: String,
}

Information about where and how you want to store the results of a monitoring job.

Fields

local_path: String

The local path to the Amazon S3 storage location where Amazon SageMaker saves the results of a monitoring job. LocalPath is an absolute path for the output data.

s3_upload_mode: Option<String>

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

s3_uri: String

A URI that identifies the Amazon S3 storage location where Amazon SageMaker saves the results of a monitoring job.

Trait Implementations

impl Clone for MonitoringS3Output[src]

impl Debug for MonitoringS3Output[src]

impl Default for MonitoringS3Output[src]

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

impl PartialEq<MonitoringS3Output> for MonitoringS3Output[src]

impl Serialize for MonitoringS3Output[src]

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