public static interface AutoScalingInstanceDetails.Builder extends SdkPojo, CopyableBuilder<AutoScalingInstanceDetails.Builder,AutoScalingInstanceDetails>
Modifier and Type | Method and Description |
---|---|
AutoScalingInstanceDetails.Builder |
autoScalingGroupName(String autoScalingGroupName)
The name of the Auto Scaling group for the instance.
|
AutoScalingInstanceDetails.Builder |
availabilityZone(String availabilityZone)
The Availability Zone for the instance.
|
AutoScalingInstanceDetails.Builder |
healthStatus(String healthStatus)
The last reported health status of this instance.
|
AutoScalingInstanceDetails.Builder |
instanceId(String instanceId)
The ID of the instance.
|
AutoScalingInstanceDetails.Builder |
launchConfigurationName(String launchConfigurationName)
The launch configuration used to launch the instance.
|
default AutoScalingInstanceDetails.Builder |
launchTemplate(Consumer<LaunchTemplateSpecification.Builder> launchTemplate)
The launch template for the instance.
|
AutoScalingInstanceDetails.Builder |
launchTemplate(LaunchTemplateSpecification launchTemplate)
The launch template for the instance.
|
AutoScalingInstanceDetails.Builder |
lifecycleState(String lifecycleState)
The lifecycle state for the instance.
|
AutoScalingInstanceDetails.Builder |
protectedFromScaleIn(Boolean protectedFromScaleIn)
Indicates whether the instance is protected from termination by Amazon EC2 Auto Scaling when scaling in.
|
copy
applyMutation, build
AutoScalingInstanceDetails.Builder instanceId(String instanceId)
The ID of the instance.
instanceId
- The ID of the instance.AutoScalingInstanceDetails.Builder autoScalingGroupName(String autoScalingGroupName)
The name of the Auto Scaling group for the instance.
autoScalingGroupName
- The name of the Auto Scaling group for the instance.AutoScalingInstanceDetails.Builder availabilityZone(String availabilityZone)
The Availability Zone for the instance.
availabilityZone
- The Availability Zone for the instance.AutoScalingInstanceDetails.Builder lifecycleState(String lifecycleState)
The lifecycle state for the instance. For more information, see Auto Scaling Lifecycle in the Amazon EC2 Auto Scaling User Guide.
lifecycleState
- The lifecycle state for the instance. For more information, see Auto
Scaling Lifecycle in the Amazon EC2 Auto Scaling User Guide.AutoScalingInstanceDetails.Builder healthStatus(String healthStatus)
The last reported health status of this instance. "Healthy" means that the instance is healthy and should remain in service. "Unhealthy" means that the instance is unhealthy and Amazon EC2 Auto Scaling should terminate and replace it.
healthStatus
- The last reported health status of this instance. "Healthy" means that the instance is healthy and
should remain in service. "Unhealthy" means that the instance is unhealthy and Amazon EC2 Auto Scaling
should terminate and replace it.AutoScalingInstanceDetails.Builder launchConfigurationName(String launchConfigurationName)
The launch configuration used to launch the instance. This value is not available if you attached the instance to the Auto Scaling group.
launchConfigurationName
- The launch configuration used to launch the instance. This value is not available if you attached the
instance to the Auto Scaling group.AutoScalingInstanceDetails.Builder launchTemplate(LaunchTemplateSpecification launchTemplate)
The launch template for the instance.
launchTemplate
- The launch template for the instance.default AutoScalingInstanceDetails.Builder launchTemplate(Consumer<LaunchTemplateSpecification.Builder> launchTemplate)
The launch template for the instance.
This is a convenience that creates an instance of theLaunchTemplateSpecification.Builder
avoiding
the need to create one manually via LaunchTemplateSpecification.builder()
.
When the Consumer
completes, SdkBuilder.build()
is called
immediately and its result is passed to launchTemplate(LaunchTemplateSpecification)
.launchTemplate
- a consumer that will call methods on LaunchTemplateSpecification.Builder
launchTemplate(LaunchTemplateSpecification)
AutoScalingInstanceDetails.Builder protectedFromScaleIn(Boolean protectedFromScaleIn)
Indicates whether the instance is protected from termination by Amazon EC2 Auto Scaling when scaling in.
protectedFromScaleIn
- Indicates whether the instance is protected from termination by Amazon EC2 Auto Scaling when scaling
in.Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.