[][src]Struct rusoto_autoscaling::RefreshPreferences

pub struct RefreshPreferences {
    pub instance_warmup: Option<i64>,
    pub min_healthy_percentage: Option<i64>,
}

Describes information used to start an instance refresh.

Fields

instance_warmup: Option<i64>

The number of seconds until a newly launched instance is configured and ready to use. During this time, Amazon EC2 Auto Scaling does not immediately move on to the next replacement. The default is to use the value for the health check grace period defined for the group.

min_healthy_percentage: Option<i64>

The amount of capacity in the Auto Scaling group that must remain healthy during an instance refresh to allow the operation to continue, as a percentage of the desired capacity of the Auto Scaling group (rounded up to the nearest integer). The default is 90.

Trait Implementations

impl Clone for RefreshPreferences[src]

impl Debug for RefreshPreferences[src]

impl Default for RefreshPreferences[src]

impl PartialEq<RefreshPreferences> for RefreshPreferences[src]

impl StructuralPartialEq for RefreshPreferences[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.