[][src]Struct rusoto_autoscaling::SetDesiredCapacityType

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

Fields

auto_scaling_group_name: String

The name of the Auto Scaling group.

desired_capacity: i64

The desired capacity is the initial capacity of the Auto Scaling group after this operation completes and the capacity it attempts to maintain.

honor_cooldown: Option<bool>

Indicates whether Amazon EC2 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, Amazon EC2 Auto Scaling does not honor the cooldown period during manual scaling activities.

Trait Implementations

impl Clone for SetDesiredCapacityType[src]

impl Debug for SetDesiredCapacityType[src]

impl Default for SetDesiredCapacityType[src]

impl PartialEq<SetDesiredCapacityType> for SetDesiredCapacityType[src]

impl StructuralPartialEq for SetDesiredCapacityType[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.