#[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
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
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl Send for DescribeMonitoringScheduleOutput
impl Sync for DescribeMonitoringScheduleOutput
impl Unpin for DescribeMonitoringScheduleOutput
Blanket Implementations
Mutably borrows from an owned value. Read more
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