[][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

dimensions: Option<Vec<Dimension>>

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

extended_statistic: Option<String>

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

metric_name: String

The name of the metric.

namespace: String

The namespace of the metric.

period: Option<i64>

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

statistic: Option<String>

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

unit: Option<String>

The unit for the metric.

Trait Implementations

impl Clone for DescribeAlarmsForMetricInput[src]

impl Debug for DescribeAlarmsForMetricInput[src]

impl Default for DescribeAlarmsForMetricInput[src]

impl PartialEq<DescribeAlarmsForMetricInput> for DescribeAlarmsForMetricInput[src]

impl StructuralPartialEq for DescribeAlarmsForMetricInput[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

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.