[][src]Struct rusoto_route53::CloudWatchAlarmConfiguration

pub struct CloudWatchAlarmConfiguration {
    pub comparison_operator: String,
    pub dimensions: Option<Vec<Dimension>>,
    pub evaluation_periods: i64,
    pub metric_name: String,
    pub namespace: String,
    pub period: i64,
    pub statistic: String,
    pub threshold: f64,
}

A complex type that contains information about the CloudWatch alarm that Amazon Route 53 is monitoring for this health check.

Fields

comparison_operator: String

For the metric that the CloudWatch alarm is associated with, the arithmetic operation that is used for the comparison.

dimensions: Option<Vec<Dimension>>

For the metric that the CloudWatch alarm is associated with, a complex type that contains information about the dimensions for the metric. For information, see Amazon CloudWatch Namespaces, Dimensions, and Metrics Reference in the Amazon CloudWatch User Guide.

evaluation_periods: i64

For the metric that the CloudWatch alarm is associated with, the number of periods that the metric is compared to the threshold.

metric_name: String

The name of the CloudWatch metric that the alarm is associated with.

namespace: String

The namespace of the metric that the alarm is associated with. For more information, see Amazon CloudWatch Namespaces, Dimensions, and Metrics Reference in the Amazon CloudWatch User Guide.

period: i64

For the metric that the CloudWatch alarm is associated with, the duration of one evaluation period in seconds.

statistic: String

For the metric that the CloudWatch alarm is associated with, the statistic that is applied to the metric.

threshold: f64

For the metric that the CloudWatch alarm is associated with, the value the metric is compared with.

Trait Implementations

impl PartialEq<CloudWatchAlarmConfiguration> for CloudWatchAlarmConfiguration[src]

impl Default for CloudWatchAlarmConfiguration[src]

impl Clone for CloudWatchAlarmConfiguration[src]

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

Performs copy-assignment from source. Read more

impl Debug for CloudWatchAlarmConfiguration[src]

Auto Trait Implementations

impl Send for CloudWatchAlarmConfiguration

impl Sync for CloudWatchAlarmConfiguration

Blanket Implementations

impl<T> From for T[src]

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

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

type Owned = T

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self