Struct rusoto_autoscaling::LifecycleHookSpecification[][src]

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 Auto Scaling that you want to perform an action whenever it launches instances or whenever it terminates instances.

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

Fields

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.

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

The name of the lifecycle hook.

The state of the EC2 instance to which you want to attach the lifecycle hook. For a list of lifecycle hook types, see DescribeLifecycleHookTypes.

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

The ARN of the target that 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.

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

Trait Implementations

impl Default for LifecycleHookSpecification
[src]

Returns the "default value" for a type. Read more

impl Debug for LifecycleHookSpecification
[src]

Formats the value using the given formatter. Read more

impl Clone for LifecycleHookSpecification
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for LifecycleHookSpecification
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations