Struct rusoto_iot::CloudwatchAlarmAction[][src]

pub struct CloudwatchAlarmAction {
    pub alarm_name: String,
    pub role_arn: String,
    pub state_reason: String,
    pub state_value: String,
}

Describes an action that updates a CloudWatch alarm.

Fields

The CloudWatch alarm name.

The IAM role that allows access to the CloudWatch alarm.

The reason for the alarm change.

The value of the alarm state. Acceptable values are: OK, ALARM, INSUFFICIENT_DATA.

Trait Implementations

impl Default for CloudwatchAlarmAction
[src]

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

impl Debug for CloudwatchAlarmAction
[src]

Formats the value using the given formatter. Read more

impl Clone for CloudwatchAlarmAction
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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