[][src]Struct rusoto_autoscaling::LifecycleHookSpecification

pub struct LifecycleHookSpecification {
    pub default_result: Option<String>,
    pub heartbeat_timeout: Option<i64>,
    pub lifecycle_hook_name: String,
    pub lifecycle_transition: String,
    pub notification_metadata: Option<String>,
    pub notification_target_arn: Option<String>,
    pub role_arn: Option<String>,
}

Describes a lifecycle hook, which tells Amazon EC2 Auto Scaling that you want to perform an action whenever it launches instances or whenever it terminates instances.

For more information, see Lifecycle Hooks in the Amazon EC2 Auto Scaling User Guide.

Fields

default_result: Option<String>

Defines the action the Auto Scaling group should take when the lifecycle hook timeout elapses or if an unexpected failure occurs. The valid values are CONTINUE and ABANDON.

heartbeat_timeout: Option<i64>

The maximum time, in seconds, that can elapse before the lifecycle hook times out. If the lifecycle hook times out, Amazon EC2 Auto Scaling performs the default action. You can prevent the lifecycle hook from timing out by calling RecordLifecycleActionHeartbeat.

lifecycle_hook_name: String

The name of the lifecycle hook.

lifecycle_transition: String

The state of the EC2 instance to which you want to attach the lifecycle hook. The possible values are:

  • autoscaling:EC2INSTANCELAUNCHING

  • autoscaling:EC2INSTANCETERMINATING

notification_metadata: Option<String>

Additional information that you want to include any time Amazon EC2 Auto Scaling sends a message to the notification target.

notification_target_arn: Option<String>

The ARN of the target that Amazon EC2 Auto Scaling sends notifications to when an instance is in the transition state for the lifecycle hook. The notification target can be either an SQS queue or an SNS topic.

role_arn: Option<String>

The ARN of the IAM role that allows the Auto Scaling group to publish to the specified notification target.

Trait Implementations

impl PartialEq<LifecycleHookSpecification> for LifecycleHookSpecification[src]

impl Default for LifecycleHookSpecification[src]

impl Clone for LifecycleHookSpecification[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for LifecycleHookSpecification[src]

Auto Trait Implementations

Blanket Implementations

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

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

type Owned = T

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

The type returned in the event of a conversion error.

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

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self