[][src]Struct rusoto_autoscaling::CompleteLifecycleActionType

pub struct CompleteLifecycleActionType {
    pub auto_scaling_group_name: String,
    pub instance_id: Option<String>,
    pub lifecycle_action_result: String,
    pub lifecycle_action_token: Option<String>,
    pub lifecycle_hook_name: String,
}

Fields

auto_scaling_group_name: String

The name of the Auto Scaling group.

instance_id: Option<String>

The ID of the instance.

lifecycle_action_result: String

The action for the group to take. This parameter can be either CONTINUE or ABANDON.

lifecycle_action_token: Option<String>

A universally unique identifier (UUID) that identifies a specific lifecycle action associated with an instance. Amazon EC2 Auto Scaling sends this token to the notification target you specified when you created the lifecycle hook.

lifecycle_hook_name: String

The name of the lifecycle hook.

Trait Implementations

impl Clone for CompleteLifecycleActionType[src]

impl Debug for CompleteLifecycleActionType[src]

impl Default for CompleteLifecycleActionType[src]

impl PartialEq<CompleteLifecycleActionType> for CompleteLifecycleActionType[src]

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