Struct rusoto_cloudwatch::DescribeAlarmsForMetricInput[][src]

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 Default for DescribeAlarmsForMetricInput
[src]

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

impl Debug for DescribeAlarmsForMetricInput
[src]

Formats the value using the given formatter. Read more

impl Clone for DescribeAlarmsForMetricInput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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