[][src]Struct rusoto_cloudwatch::DescribeAlarmsForMetricInput

pub struct DescribeAlarmsForMetricInput {
    pub dimensions: Option<Vec<Dimension>>,
    pub extended_statistic: Option<String>,
    pub metric_name: String,
    pub namespace: String,
    pub period: Option<i64>,
    pub statistic: Option<String>,
    pub unit: Option<String>,
}

Fields

The dimensions associated with the metric. If the metric has any associated dimensions, you must specify them in order for the call to succeed.

The percentile statistic for the metric. Specify a value between p0.0 and p100.

The name of the metric.

The namespace of the metric.

The period, in seconds, over which the statistic is applied.

The statistic for the metric, other than percentiles. For percentile statistics, use ExtendedStatistics.

The unit for the metric.

Trait Implementations

impl Clone for DescribeAlarmsForMetricInput
[src]

Performs copy-assignment from source. Read more

impl Default for DescribeAlarmsForMetricInput
[src]

impl PartialEq<DescribeAlarmsForMetricInput> for DescribeAlarmsForMetricInput
[src]

impl Debug for DescribeAlarmsForMetricInput
[src]

Auto Trait Implementations

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]

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

🔬 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, U> TryInto for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

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

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

impl<T> Same for T

Should always be Self

impl<T> Erased for T