Struct rusoto_autoscaling::SetDesiredCapacityType[][src]

pub struct SetDesiredCapacityType {
    pub auto_scaling_group_name: String,
    pub desired_capacity: i64,
    pub honor_cooldown: Option<bool>,
}

Fields

The name of the Auto Scaling group.

The number of EC2 instances that should be running in the Auto Scaling group.

Indicates whether Auto Scaling waits for the cooldown period to complete before initiating a scaling activity to set your Auto Scaling group to its new capacity. By default, Auto Scaling does not honor the cooldown period during manual scaling activities.

Trait Implementations

impl Default for SetDesiredCapacityType
[src]

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

impl Debug for SetDesiredCapacityType
[src]

Formats the value using the given formatter. Read more

impl Clone for SetDesiredCapacityType
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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