Struct rusoto_cloudwatch::DescribeAlarmHistoryInput[][src]

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

Fields

The name of the alarm.

The ending date to retrieve alarm history.

The type of alarm histories to retrieve.

The maximum number of alarm history records to retrieve.

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

The starting date to retrieve alarm history.

Trait Implementations

impl Default for DescribeAlarmHistoryInput
[src]

Returns the "default value" for a type. Read more

impl Debug for DescribeAlarmHistoryInput
[src]

Formats the value using the given formatter. Read more

impl Clone for DescribeAlarmHistoryInput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for DescribeAlarmHistoryInput
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations