[][src]Struct rusoto_cloudwatch::DescribeAlarmHistoryInput

pub struct DescribeAlarmHistoryInput {
    pub alarm_name: Option<String>,
    pub alarm_types: Option<Vec<String>>,
    pub end_date: Option<String>,
    pub history_item_type: Option<String>,
    pub max_records: Option<i64>,
    pub next_token: Option<String>,
    pub scan_by: Option<String>,
    pub start_date: Option<String>,
}

Fields

alarm_name: Option<String>

The name of the alarm.

alarm_types: Option<Vec<String>>

Use this parameter to specify whether you want the operation to return metric alarms or composite alarms. If you omit this parameter, only metric alarms are returned.

end_date: Option<String>

The ending date to retrieve alarm history.

history_item_type: Option<String>

The type of alarm histories to retrieve.

max_records: Option<i64>

The maximum number of alarm history records to retrieve.

next_token: Option<String>

The token returned by a previous call to indicate that there is more data available.

scan_by: Option<String>

Specified whether to return the newest or oldest alarm history first. Specify TimestampDescending to have the newest event history returned first, and specify TimestampAscending to have the oldest history returned first.

start_date: Option<String>

The starting date to retrieve alarm history.

Trait Implementations

impl Clone for DescribeAlarmHistoryInput[src]

impl Debug for DescribeAlarmHistoryInput[src]

impl Default for DescribeAlarmHistoryInput[src]

impl PartialEq<DescribeAlarmHistoryInput> for DescribeAlarmHistoryInput[src]

impl StructuralPartialEq for DescribeAlarmHistoryInput[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.