Struct rusoto_autoscaling::LifecycleHook[][src]

pub struct LifecycleHook {
    pub auto_scaling_group_name: Option<String>,
    pub default_result: Option<String>,
    pub global_timeout: Option<i64>,
    pub heartbeat_timeout: Option<i64>,
    pub lifecycle_hook_name: Option<String>,
    pub lifecycle_transition: Option<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

The name of the Auto Scaling group for the lifecycle hook.

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 default value is CONTINUE.

The maximum time, in seconds, that an instance can remain in a Pending:Wait or Terminating:Wait state. The maximum is 172800 seconds (48 hours) or 100 times HeartbeatTimeout, whichever is smaller.

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 LifecycleHook
[src]

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

impl Debug for LifecycleHook
[src]

Formats the value using the given formatter. Read more

impl Clone for LifecycleHook
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for LifecycleHook
[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