[][src]Struct rusoto_sagemaker::DescribeMonitoringScheduleResponse

pub struct DescribeMonitoringScheduleResponse {
    pub creation_time: f64,
    pub endpoint_name: Option<String>,
    pub failure_reason: Option<String>,
    pub last_modified_time: f64,
    pub last_monitoring_execution_summary: Option<MonitoringExecutionSummary>,
    pub monitoring_schedule_arn: String,
    pub monitoring_schedule_config: MonitoringScheduleConfig,
    pub monitoring_schedule_name: String,
    pub monitoring_schedule_status: String,
    pub monitoring_type: Option<String>,
}

Fields

creation_time: f64

The time at which the monitoring job was created.

endpoint_name: Option<String>

The name of the endpoint for the monitoring job.

failure_reason: Option<String>

A string, up to one KB in size, that contains the reason a monitoring job failed, if it failed.

last_modified_time: f64

The time at which the monitoring job was last modified.

last_monitoring_execution_summary: Option<MonitoringExecutionSummary>

Describes metadata on the last execution to run, if there was one.

monitoring_schedule_arn: String

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

monitoring_schedule_config: MonitoringScheduleConfig

The configuration object that specifies the monitoring schedule and defines the monitoring job.

monitoring_schedule_name: String

Name of the monitoring schedule.

monitoring_schedule_status: String

The status of an monitoring job.

monitoring_type: Option<String>

The type of the monitoring job that this schedule runs. This is one of the following values.

  • DATAQUALITY - The schedule is for a data quality monitoring job.

  • MODELQUALITY - The schedule is for a model quality monitoring job.

  • MODELBIAS - The schedule is for a bias monitoring job.

  • MODELEXPLAINABILITY - The schedule is for an explainability monitoring job.

Trait Implementations

impl Clone for DescribeMonitoringScheduleResponse[src]

impl Debug for DescribeMonitoringScheduleResponse[src]

impl Default for DescribeMonitoringScheduleResponse[src]

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

impl PartialEq<DescribeMonitoringScheduleResponse> for DescribeMonitoringScheduleResponse[src]

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