#[non_exhaustive]pub struct ModelDashboardMonitoringSchedule { /* private fields */ }
Expand description
A monitoring schedule for a model displayed in the Amazon SageMaker Model Dashboard.
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) -> Option<&[MonitoringAlertSummary]>
pub fn monitoring_alert_summaries(&self) -> Option<&[MonitoringAlertSummary]>
A JSON array where each element is a summary for a monitoring alert.
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.
source§impl ModelDashboardMonitoringSchedule
impl ModelDashboardMonitoringSchedule
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
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
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl PartialEq<ModelDashboardMonitoringSchedule> for ModelDashboardMonitoringSchedule
impl PartialEq<ModelDashboardMonitoringSchedule> for ModelDashboardMonitoringSchedule
source§fn eq(&self, other: &ModelDashboardMonitoringSchedule) -> bool
fn eq(&self, other: &ModelDashboardMonitoringSchedule) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.