Struct rusoto_autoscaling::EnterStandbyQuery[][src]

pub struct EnterStandbyQuery {
    pub auto_scaling_group_name: String,
    pub instance_ids: Option<Vec<String>>,
    pub should_decrement_desired_capacity: bool,
}

Fields

The name of the Auto Scaling group.

The IDs of the instances. You can specify up to 20 instances.

Indicates whether to decrement the desired capacity of the Auto Scaling group by the number of instances moved to Standby mode.

Trait Implementations

impl Default for EnterStandbyQuery
[src]

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

impl Debug for EnterStandbyQuery
[src]

Formats the value using the given formatter. Read more

impl Clone for EnterStandbyQuery
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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