Struct rusoto_autoscaling::CustomizedMetricSpecification[][src]

pub struct CustomizedMetricSpecification {
    pub dimensions: Option<Vec<MetricDimension>>,
    pub metric_name: String,
    pub namespace: String,
    pub statistic: String,
    pub unit: Option<String>,
}

Configures a customized metric for a target tracking policy.

Fields

The dimensions of the metric.

The name of the metric.

The namespace of the metric.

The statistic of the metric.

The unit of the metric.

Trait Implementations

impl Default for CustomizedMetricSpecification
[src]

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

impl Debug for CustomizedMetricSpecification
[src]

Formats the value using the given formatter. Read more

impl Clone for CustomizedMetricSpecification
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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