Struct rusoto_cloudwatch::MetricStat[][src]

pub struct MetricStat {
    pub metric: Metric,
    pub period: i64,
    pub stat: String,
    pub unit: Option<String>,
}

This structure defines the metric to be returned, along with the statistics, period, and units.

Fields

The metric to return, including the metric name, namespace, and dimensions.

The period to use when retrieving the metric.

The statistic to return. It can include any CloudWatch statistic or extended statistic.

The unit to use for the returned data points.

Trait Implementations

impl Default for MetricStat
[src]

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

impl Debug for MetricStat
[src]

Formats the value using the given formatter. Read more

impl Clone for MetricStat
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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

impl Send for MetricStat

impl Sync for MetricStat