Struct rusoto_autoscaling::EnableMetricsCollectionQuery[][src]

pub struct EnableMetricsCollectionQuery {
    pub auto_scaling_group_name: String,
    pub granularity: String,
    pub metrics: Option<Vec<String>>,
}

Fields

The name of the Auto Scaling group.

The granularity to associate with the metrics to collect. The only valid value is 1Minute.

One or more of the following metrics. If you omit this parameter, all metrics are enabled.

  • GroupMinSize

  • GroupMaxSize

  • GroupDesiredCapacity

  • GroupInServiceInstances

  • GroupPendingInstances

  • GroupStandbyInstances

  • GroupTerminatingInstances

  • GroupTotalInstances

Trait Implementations

impl Default for EnableMetricsCollectionQuery
[src]

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

impl Debug for EnableMetricsCollectionQuery
[src]

Formats the value using the given formatter. Read more

impl Clone for EnableMetricsCollectionQuery
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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