public static interface LifecycleHook.Builder extends 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 you want to attach the lifecycle hook.
|
LifecycleHook.Builder |
notificationMetadata(String notificationMetadata)
Additional information that you want to include any time Auto Scaling sends a message to the notification
target.
|
LifecycleHook.Builder |
notificationTargetARN(String notificationTargetARN)
The ARN of the target that 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 you want to attach the lifecycle hook. For a list of lifecycle hook types, see DescribeLifecycleHookTypes.
lifecycleTransition
- The state of the EC2 instance to which you want to attach the lifecycle hook. For a list of lifecycle
hook types, see DescribeLifecycleHookTypes.LifecycleHook.Builder notificationTargetARN(String notificationTargetARN)
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.
notificationTargetARN
- 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.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 Auto Scaling sends a message to the notification target.
notificationMetadata
- Additional information that you want to include any time 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, 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, 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.