Struct rusoto_cloudwatch::SetAlarmStateInput[][src]

pub struct SetAlarmStateInput {
    pub alarm_name: String,
    pub state_reason: String,
    pub state_reason_data: Option<String>,
    pub state_value: String,
}

Fields

The name for the alarm. This name must be unique within the AWS account. The maximum length is 255 characters.

The reason that this alarm is set to this specific state, in text format.

The reason that this alarm is set to this specific state, in JSON format.

The value of the state.

Trait Implementations

impl Default for SetAlarmStateInput
[src]

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

impl Debug for SetAlarmStateInput
[src]

Formats the value using the given formatter. Read more

impl Clone for SetAlarmStateInput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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