#[non_exhaustive]pub struct ListMonitoringAlertHistoryInput { /* private fields */ }
Implementations§
source§impl ListMonitoringAlertHistoryInput
impl ListMonitoringAlertHistoryInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListMonitoringAlertHistory, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListMonitoringAlertHistory, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<ListMonitoringAlertHistory
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ListMonitoringAlertHistoryInput
.
source§impl ListMonitoringAlertHistoryInput
impl ListMonitoringAlertHistoryInput
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 sort_by(&self) -> Option<&MonitoringAlertHistorySortKey>
pub fn sort_by(&self) -> Option<&MonitoringAlertHistorySortKey>
The field used to sort results. The default is CreationTime
.
sourcepub fn sort_order(&self) -> Option<&SortOrder>
pub fn sort_order(&self) -> Option<&SortOrder>
The sort order, whether Ascending
or Descending
, of the alert history. The default is Descending
.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
If the result of the previous ListMonitoringAlertHistory
request was truncated, the response includes a NextToken
. To retrieve the next set of alerts in the history, use the token in the next request.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of results to display. The default is 100.
sourcepub fn creation_time_before(&self) -> Option<&DateTime>
pub fn creation_time_before(&self) -> Option<&DateTime>
A filter that returns only alerts created on or before the specified time.
sourcepub fn creation_time_after(&self) -> Option<&DateTime>
pub fn creation_time_after(&self) -> Option<&DateTime>
A filter that returns only alerts created on or after the specified time.
sourcepub fn status_equals(&self) -> Option<&MonitoringAlertStatus>
pub fn status_equals(&self) -> Option<&MonitoringAlertStatus>
A filter that retrieves only alerts with a specific status.
Trait Implementations§
source§impl Clone for ListMonitoringAlertHistoryInput
impl Clone for ListMonitoringAlertHistoryInput
source§fn clone(&self) -> ListMonitoringAlertHistoryInput
fn clone(&self) -> ListMonitoringAlertHistoryInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq<ListMonitoringAlertHistoryInput> for ListMonitoringAlertHistoryInput
impl PartialEq<ListMonitoringAlertHistoryInput> for ListMonitoringAlertHistoryInput
source§fn eq(&self, other: &ListMonitoringAlertHistoryInput) -> bool
fn eq(&self, other: &ListMonitoringAlertHistoryInput) -> bool
self
and other
values to be equal, and is used
by ==
.