Struct rusoto_cloudwatch::AlarmHistoryItem[][src]

pub struct AlarmHistoryItem {
    pub alarm_name: Option<String>,
    pub history_data: Option<String>,
    pub history_item_type: Option<String>,
    pub history_summary: Option<String>,
    pub timestamp: Option<String>,
}

Represents the history of a specific alarm.

Fields

The descriptive name for the alarm.

Data about the alarm, in JSON format.

The type of alarm history item.

A summary of the alarm history, in text format.

The time stamp for the alarm history item.

Trait Implementations

impl Default for AlarmHistoryItem
[src]

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

impl Debug for AlarmHistoryItem
[src]

Formats the value using the given formatter. Read more

impl Clone for AlarmHistoryItem
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for AlarmHistoryItem
[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