#[non_exhaustive]
pub struct DescribeMonitoringScheduleOutput { pub monitoring_schedule_arn: Option<String>, pub monitoring_schedule_name: Option<String>, pub monitoring_schedule_status: Option<ScheduleStatus>, pub monitoring_type: Option<MonitoringType>, pub failure_reason: Option<String>, pub creation_time: Option<DateTime>, pub last_modified_time: Option<DateTime>, pub monitoring_schedule_config: Option<MonitoringScheduleConfig>, pub endpoint_name: Option<String>, pub last_monitoring_execution_summary: Option<MonitoringExecutionSummary>, }

Fields (Non-exhaustive)

This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.
monitoring_schedule_arn: Option<String>

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

monitoring_schedule_name: Option<String>

Name of the monitoring schedule.

monitoring_schedule_status: Option<ScheduleStatus>

The status of an monitoring job.

monitoring_type: Option<MonitoringType>

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

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

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

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

  • MODEL_EXPLAINABILITY - The schedule is for an explainability 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.

creation_time: Option<DateTime>

The time at which the monitoring job was created.

last_modified_time: Option<DateTime>

The time at which the monitoring job was last modified.

monitoring_schedule_config: Option<MonitoringScheduleConfig>

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

endpoint_name: Option<String>

The name of the endpoint for the monitoring job.

last_monitoring_execution_summary: Option<MonitoringExecutionSummary>

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

Implementations

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

Name of the monitoring schedule.

The status of an monitoring job.

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

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

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

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

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

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

The time at which the monitoring job was created.

The time at which the monitoring job was last modified.

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

The name of the endpoint for the monitoring job.

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

Creates a new builder-style object to manufacture DescribeMonitoringScheduleOutput

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

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.

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