#[non_exhaustive]pub struct ModelDashboardMonitoringSchedule {
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 monitoring_alert_summaries: Option<Vec<MonitoringAlertSummary>>,
pub last_monitoring_execution_summary: Option<MonitoringExecutionSummary>,
pub batch_transform_input: Option<BatchTransformInput>,
}
Expand description
A monitoring schedule for a model displayed in the Amazon SageMaker Model Dashboard.
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 a monitoring schedule.
monitoring_schedule_name: Option<String>
The name of a monitoring schedule.
monitoring_schedule_status: Option<ScheduleStatus>
The status of the monitoring schedule.
monitoring_type: Option<MonitoringType>
The monitor type of a model monitor.
failure_reason: Option<String>
If a monitoring job failed, provides the reason.
creation_time: Option<DateTime>
A timestamp that indicates when the monitoring schedule was created.
last_modified_time: Option<DateTime>
A timestamp that indicates when the monitoring schedule was last updated.
monitoring_schedule_config: Option<MonitoringScheduleConfig>
Configures the monitoring schedule and defines the monitoring job.
endpoint_name: Option<String>
The endpoint which is monitored.
monitoring_alert_summaries: Option<Vec<MonitoringAlertSummary>>
A JSON array where each element is a summary for a monitoring alert.
last_monitoring_execution_summary: Option<MonitoringExecutionSummary>
Summary of information about the last monitoring job to run.
batch_transform_input: Option<BatchTransformInput>
Input object for the batch transform job.
Implementations§
source§impl ModelDashboardMonitoringSchedule
impl ModelDashboardMonitoringSchedule
sourcepub fn monitoring_schedule_arn(&self) -> Option<&str>
pub fn monitoring_schedule_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of a monitoring schedule.
sourcepub fn monitoring_schedule_name(&self) -> Option<&str>
pub fn monitoring_schedule_name(&self) -> Option<&str>
The name of a monitoring schedule.
sourcepub fn monitoring_schedule_status(&self) -> Option<&ScheduleStatus>
pub fn monitoring_schedule_status(&self) -> Option<&ScheduleStatus>
The status of the monitoring schedule.
sourcepub fn monitoring_type(&self) -> Option<&MonitoringType>
pub fn monitoring_type(&self) -> Option<&MonitoringType>
The monitor type of a model monitor.
sourcepub fn failure_reason(&self) -> Option<&str>
pub fn failure_reason(&self) -> Option<&str>
If a monitoring job failed, provides the reason.
sourcepub fn creation_time(&self) -> Option<&DateTime>
pub fn creation_time(&self) -> Option<&DateTime>
A timestamp that indicates when the monitoring schedule was created.
sourcepub fn last_modified_time(&self) -> Option<&DateTime>
pub fn last_modified_time(&self) -> Option<&DateTime>
A timestamp that indicates when the monitoring schedule was last updated.
sourcepub fn monitoring_schedule_config(&self) -> Option<&MonitoringScheduleConfig>
pub fn monitoring_schedule_config(&self) -> Option<&MonitoringScheduleConfig>
Configures the monitoring schedule and defines the monitoring job.
sourcepub fn endpoint_name(&self) -> Option<&str>
pub fn endpoint_name(&self) -> Option<&str>
The endpoint which is monitored.
sourcepub fn monitoring_alert_summaries(&self) -> &[MonitoringAlertSummary]
pub fn monitoring_alert_summaries(&self) -> &[MonitoringAlertSummary]
A JSON array where each element is a summary for a monitoring alert.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .monitoring_alert_summaries.is_none()
.
sourcepub fn last_monitoring_execution_summary(
&self
) -> Option<&MonitoringExecutionSummary>
pub fn last_monitoring_execution_summary( &self ) -> Option<&MonitoringExecutionSummary>
Summary of information about the last monitoring job to run.
sourcepub fn batch_transform_input(&self) -> Option<&BatchTransformInput>
pub fn batch_transform_input(&self) -> Option<&BatchTransformInput>
Input object for the batch transform job.
source§impl ModelDashboardMonitoringSchedule
impl ModelDashboardMonitoringSchedule
sourcepub fn builder() -> ModelDashboardMonitoringScheduleBuilder
pub fn builder() -> ModelDashboardMonitoringScheduleBuilder
Creates a new builder-style object to manufacture ModelDashboardMonitoringSchedule
.
Trait Implementations§
source§impl Clone for ModelDashboardMonitoringSchedule
impl Clone for ModelDashboardMonitoringSchedule
source§fn clone(&self) -> ModelDashboardMonitoringSchedule
fn clone(&self) -> ModelDashboardMonitoringSchedule
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for ModelDashboardMonitoringSchedule
impl PartialEq for ModelDashboardMonitoringSchedule
source§fn eq(&self, other: &ModelDashboardMonitoringSchedule) -> bool
fn eq(&self, other: &ModelDashboardMonitoringSchedule) -> bool
self
and other
values to be equal, and is used
by ==
.