Struct aws_sdk_sagemaker::model::MonitoringAlertSummary
source · #[non_exhaustive]pub struct MonitoringAlertSummary { /* private fields */ }
Expand description
Provides summary information about a monitor alert.
Implementations§
source§impl MonitoringAlertSummary
impl MonitoringAlertSummary
sourcepub fn monitoring_alert_name(&self) -> Option<&str>
pub fn monitoring_alert_name(&self) -> Option<&str>
The name of a monitoring alert.
sourcepub fn creation_time(&self) -> Option<&DateTime>
pub fn creation_time(&self) -> Option<&DateTime>
A timestamp that indicates when a monitor alert was created.
sourcepub fn last_modified_time(&self) -> Option<&DateTime>
pub fn last_modified_time(&self) -> Option<&DateTime>
A timestamp that indicates when a monitor alert was last updated.
sourcepub fn alert_status(&self) -> Option<&MonitoringAlertStatus>
pub fn alert_status(&self) -> Option<&MonitoringAlertStatus>
The current status of an alert.
sourcepub fn datapoints_to_alert(&self) -> Option<i32>
pub fn datapoints_to_alert(&self) -> Option<i32>
Within EvaluationPeriod
, how many execution failures will raise an alert.
sourcepub fn evaluation_period(&self) -> Option<i32>
pub fn evaluation_period(&self) -> Option<i32>
The number of most recent monitoring executions to consider when evaluating alert status.
sourcepub fn actions(&self) -> Option<&MonitoringAlertActions>
pub fn actions(&self) -> Option<&MonitoringAlertActions>
A list of alert actions taken in response to an alert going into InAlert
status.
source§impl MonitoringAlertSummary
impl MonitoringAlertSummary
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture MonitoringAlertSummary
.
Trait Implementations§
source§impl Clone for MonitoringAlertSummary
impl Clone for MonitoringAlertSummary
source§fn clone(&self) -> MonitoringAlertSummary
fn clone(&self) -> MonitoringAlertSummary
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 Debug for MonitoringAlertSummary
impl Debug for MonitoringAlertSummary
source§impl PartialEq<MonitoringAlertSummary> for MonitoringAlertSummary
impl PartialEq<MonitoringAlertSummary> for MonitoringAlertSummary
source§fn eq(&self, other: &MonitoringAlertSummary) -> bool
fn eq(&self, other: &MonitoringAlertSummary) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.