public static interface LifecycleHook.Builder extends SdkPojo, CopyableBuilder<LifecycleHook.Builder,LifecycleHook>
Modifier and Type | Method and Description |
---|---|
LifecycleHook.Builder |
autoScalingGroupName(String autoScalingGroupName)
The name of the Auto Scaling group for the lifecycle hook.
|
LifecycleHook.Builder |
defaultResult(String defaultResult)
Defines the action the Auto Scaling group should take when the lifecycle hook timeout elapses or if an
unexpected failure occurs.
|
LifecycleHook.Builder |
globalTimeout(Integer globalTimeout)
The maximum time, in seconds, that an instance can remain in a
Pending:Wait or
Terminating:Wait state. |
LifecycleHook.Builder |
heartbeatTimeout(Integer heartbeatTimeout)
The maximum time, in seconds, that can elapse before the lifecycle hook times out.
|
LifecycleHook.Builder |
lifecycleHookName(String lifecycleHookName)
The name of the lifecycle hook.
|
LifecycleHook.Builder |
lifecycleTransition(String lifecycleTransition)
The state of the EC2 instance to which to attach the lifecycle hook.
|
LifecycleHook.Builder |
notificationMetadata(String notificationMetadata)
Additional information that you want to include any time Amazon EC2 Auto Scaling sends a message to the
notification target.
|
LifecycleHook.Builder |
notificationTargetARN(String notificationTargetARN)
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.
|
LifecycleHook.Builder |
roleARN(String roleARN)
The ARN of the IAM role that allows the Auto Scaling group to publish to the specified notification target.
|
copy
applyMutation, build
LifecycleHook.Builder lifecycleHookName(String lifecycleHookName)
The name of the lifecycle hook.
lifecycleHookName
- The name of the lifecycle hook.LifecycleHook.Builder autoScalingGroupName(String autoScalingGroupName)
The name of the Auto Scaling group for the lifecycle hook.
autoScalingGroupName
- The name of the Auto Scaling group for the lifecycle hook.LifecycleHook.Builder lifecycleTransition(String lifecycleTransition)
The state of the EC2 instance to which to attach the lifecycle hook. The following are possible values:
autoscaling:EC2_INSTANCE_LAUNCHING
autoscaling:EC2_INSTANCE_TERMINATING
lifecycleTransition
- The state of the EC2 instance to which to attach the lifecycle hook. The following are possible
values:
autoscaling:EC2_INSTANCE_LAUNCHING
autoscaling:EC2_INSTANCE_TERMINATING
LifecycleHook.Builder notificationTargetARN(String notificationTargetARN)
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.
notificationTargetARN
- 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.LifecycleHook.Builder roleARN(String roleARN)
The ARN of the IAM role that allows the Auto Scaling group to publish to the specified notification target.
roleARN
- The ARN of the IAM role that allows the Auto Scaling group to publish to the specified notification
target.LifecycleHook.Builder notificationMetadata(String notificationMetadata)
Additional information that you want to include any time Amazon EC2 Auto Scaling sends a message to the notification target.
notificationMetadata
- Additional information that you want to include any time Amazon EC2 Auto Scaling sends a message to
the notification target.LifecycleHook.Builder heartbeatTimeout(Integer heartbeatTimeout)
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.
heartbeatTimeout
- 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.LifecycleHook.Builder globalTimeout(Integer globalTimeout)
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.
globalTimeout
- 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.LifecycleHook.Builder defaultResult(String defaultResult)
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
.
defaultResult
- 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
.Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.