Struct rusoto_autoscaling::DisableMetricsCollectionQuery[][src]

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

Fields

The name of the Auto Scaling group.

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

  • GroupMinSize

  • GroupMaxSize

  • GroupDesiredCapacity

  • GroupInServiceInstances

  • GroupPendingInstances

  • GroupStandbyInstances

  • GroupTerminatingInstances

  • GroupTotalInstances

Trait Implementations

impl Default for DisableMetricsCollectionQuery
[src]

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

impl Debug for DisableMetricsCollectionQuery
[src]

Formats the value using the given formatter. Read more

impl Clone for DisableMetricsCollectionQuery
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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