[][src]Struct rusoto_autoscaling::InstanceRefresh

pub struct InstanceRefresh {
    pub auto_scaling_group_name: Option<String>,
    pub end_time: Option<String>,
    pub instance_refresh_id: Option<String>,
    pub instances_to_update: Option<i64>,
    pub percentage_complete: Option<i64>,
    pub start_time: Option<String>,
    pub status: Option<String>,
    pub status_reason: Option<String>,
}

Describes an instance refresh for an Auto Scaling group.

Fields

auto_scaling_group_name: Option<String>

The name of the Auto Scaling group.

end_time: Option<String>

The date and time at which the instance refresh ended.

instance_refresh_id: Option<String>

The instance refresh ID.

instances_to_update: Option<i64>

The number of instances remaining to update before the instance refresh is complete.

percentage_complete: Option<i64>

The percentage of the instance refresh that is complete. For each instance replacement, Amazon EC2 Auto Scaling tracks the instance's health status and warm-up time. When the instance's health status changes to healthy and the specified warm-up time passes, the instance is considered updated and added to the percentage complete.

start_time: Option<String>

The date and time at which the instance refresh began.

status: Option<String>

The current status for the instance refresh operation:

  • Pending - The request was created, but the operation has not started.

  • InProgress - The operation is in progress.

  • Successful - The operation completed successfully.

  • Failed - The operation failed to complete. You can troubleshoot using the status reason and the scaling activities.

  • Cancelling - An ongoing operation is being cancelled. Cancellation does not roll back any replacements that have already been completed, but it prevents new replacements from being started.

  • Cancelled - The operation is cancelled.

status_reason: Option<String>

Provides more details about the current status of the instance refresh.

Trait Implementations

impl Clone for InstanceRefresh[src]

impl Debug for InstanceRefresh[src]

impl Default for InstanceRefresh[src]

impl PartialEq<InstanceRefresh> for InstanceRefresh[src]

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