[][src]Struct rusoto_cloudwatch::DescribeAlarmsInput

pub struct DescribeAlarmsInput {
    pub action_prefix: Option<String>,
    pub alarm_name_prefix: Option<String>,
    pub alarm_names: Option<Vec<String>>,
    pub max_records: Option<i64>,
    pub next_token: Option<String>,
    pub state_value: Option<String>,
}

Fields

action_prefix: Option<String>

The action name prefix.

alarm_name_prefix: Option<String>

The alarm name prefix. If this parameter is specified, you cannot specify AlarmNames.

alarm_names: Option<Vec<String>>

The names of the alarms.

max_records: Option<i64>

The maximum number of alarm descriptions to retrieve.

next_token: Option<String>

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

state_value: Option<String>

The state value to be used in matching alarms.

Trait Implementations

impl PartialEq<DescribeAlarmsInput> for DescribeAlarmsInput[src]

impl Default for DescribeAlarmsInput[src]

impl Clone for DescribeAlarmsInput[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for DescribeAlarmsInput[src]

Auto Trait Implementations

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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.

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

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Erased for T