#[non_exhaustive]pub struct MonitoringAlertHistorySummary { /* private fields */ }
Expand description
Provides summary information of an alert's history.
Implementations§
source§impl MonitoringAlertHistorySummary
impl MonitoringAlertHistorySummary
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_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 the first alert transition occurred in an alert history. An alert transition can be from status InAlert
to OK
, or from OK
to InAlert
.
sourcepub fn alert_status(&self) -> Option<&MonitoringAlertStatus>
pub fn alert_status(&self) -> Option<&MonitoringAlertStatus>
The current alert status of an alert.
source§impl MonitoringAlertHistorySummary
impl MonitoringAlertHistorySummary
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture MonitoringAlertHistorySummary
.
Trait Implementations§
source§impl Clone for MonitoringAlertHistorySummary
impl Clone for MonitoringAlertHistorySummary
source§fn clone(&self) -> MonitoringAlertHistorySummary
fn clone(&self) -> MonitoringAlertHistorySummary
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<MonitoringAlertHistorySummary> for MonitoringAlertHistorySummary
impl PartialEq<MonitoringAlertHistorySummary> for MonitoringAlertHistorySummary
source§fn eq(&self, other: &MonitoringAlertHistorySummary) -> bool
fn eq(&self, other: &MonitoringAlertHistorySummary) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.