[][src]Struct rusoto_autoscaling::StartInstanceRefreshType

pub struct StartInstanceRefreshType {
    pub auto_scaling_group_name: String,
    pub preferences: Option<RefreshPreferences>,
    pub strategy: Option<String>,
}

Fields

auto_scaling_group_name: String

The name of the Auto Scaling group.

preferences: Option<RefreshPreferences>

Set of preferences associated with the instance refresh request.

If not provided, the default values are used. For MinHealthyPercentage, the default value is 90. For InstanceWarmup, the default is to use the value specified for the health check grace period for the Auto Scaling group.

For more information, see RefreshPreferences in the Amazon EC2 Auto Scaling API Reference.

strategy: Option<String>

The strategy to use for the instance refresh. The only valid value is Rolling.

A rolling update is an update that is applied to all instances in an Auto Scaling group until all instances have been updated. A rolling update can fail due to failed health checks or if instances are on standby or are protected from scale in. If the rolling update process fails, any instances that were already replaced are not rolled back to their previous configuration.

Trait Implementations

impl Clone for StartInstanceRefreshType[src]

impl Debug for StartInstanceRefreshType[src]

impl Default for StartInstanceRefreshType[src]

impl PartialEq<StartInstanceRefreshType> for StartInstanceRefreshType[src]

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