[][src]Struct rusoto_sagemaker::MonitoringExecutionSummary

pub struct MonitoringExecutionSummary {
    pub creation_time: f64,
    pub endpoint_name: Option<String>,
    pub failure_reason: Option<String>,
    pub last_modified_time: f64,
    pub monitoring_execution_status: String,
    pub monitoring_job_definition_name: Option<String>,
    pub monitoring_schedule_name: String,
    pub monitoring_type: Option<String>,
    pub processing_job_arn: Option<String>,
    pub scheduled_time: f64,
}

Summary of information about the last monitoring job to run.

Fields

creation_time: f64

The time at which the monitoring job was created.

endpoint_name: Option<String>

The name of the endpoint used to run the monitoring job.

failure_reason: Option<String>

Contains the reason a monitoring job failed, if it failed.

last_modified_time: f64

A timestamp that indicates the last time the monitoring job was modified.

monitoring_execution_status: String

The status of the monitoring job.

monitoring_job_definition_name: Option<String>

The name of the monitoring job.

monitoring_schedule_name: String

The name of the monitoring schedule.

monitoring_type: Option<String>

The type of the monitoring job.

processing_job_arn: Option<String>

The Amazon Resource Name (ARN) of the monitoring job.

scheduled_time: f64

The time the monitoring job was scheduled.

Trait Implementations

impl Clone for MonitoringExecutionSummary[src]

impl Debug for MonitoringExecutionSummary[src]

impl Default for MonitoringExecutionSummary[src]

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

impl PartialEq<MonitoringExecutionSummary> for MonitoringExecutionSummary[src]

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