logo
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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Deserialize this value from the given Serde deserializer. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more