Interface AddAutoScalingGroupCapacityOptions
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Subinterfaces:
AddCapacityOptions,AsgCapacityProviderProps
- All Known Implementing Classes:
AddAutoScalingGroupCapacityOptions.Jsii$Proxy,AddCapacityOptions.Jsii$Proxy,AsgCapacityProviderProps.Jsii$Proxy
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.ecs.*;
import software.amazon.awscdk.services.kms.*;
import software.amazon.awscdk.core.*;
Key key;
AddAutoScalingGroupCapacityOptions addAutoScalingGroupCapacityOptions = AddAutoScalingGroupCapacityOptions.builder()
.canContainersAccessInstanceRole(false)
.machineImageType(MachineImageType.AMAZON_LINUX_2)
.spotInstanceDraining(false)
.taskDrainTime(Duration.minutes(30))
.topicEncryptionKey(key)
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forAddAutoScalingGroupCapacityOptionsstatic final classAn implementation forAddAutoScalingGroupCapacityOptions -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default BooleanSpecifies whether the containers can access the container instance role.default MachineImageTypeWhat type of machine image this is.default BooleanSpecify whether to enable Automated Draining for Spot Instances running Amazon ECS Services.default DurationDeprecated.The lifecycle draining hook is not configured if using the EC2 Capacity Provider.default IKeyIfAddAutoScalingGroupCapacityOptions.taskDrainTimeis non-zero, then the ECS cluster creates an SNS Topic to as part of a system to drain instances of tasks when the instance is being shut down.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCanContainersAccessInstanceRole
Specifies whether the containers can access the container instance role.Default: false
-
getMachineImageType
What type of machine image this is.Depending on the setting, different UserData will automatically be added to the
AutoScalingGroupto configure it properly for use with ECS.If you create an
AutoScalingGroupyourself and are adding it viaaddAutoScalingGroup(), you must specify this value. If you are adding anautoScalingGroupviaaddCapacity, this value will be determined from themachineImageyou pass.Default: - Automatically determined from `machineImage`, if available, otherwise `MachineImageType.AMAZON_LINUX_2`.
-
getSpotInstanceDraining
Specify whether to enable Automated Draining for Spot Instances running Amazon ECS Services.For more information, see Using Spot Instances.
Default: false
-
getTaskDrainTime
Deprecated.The lifecycle draining hook is not configured if using the EC2 Capacity Provider. Enable managed termination protection instead.(deprecated) The time period to wait before force terminating an instance that is draining.This creates a Lambda function that is used by a lifecycle hook for the AutoScalingGroup that will delay instance termination until all ECS tasks have drained from the instance. Set to 0 to disable task draining.
Set to 0 to disable task draining.
Default: Duration.minutes(5)
-
getTopicEncryptionKey
IfAddAutoScalingGroupCapacityOptions.taskDrainTimeis non-zero, then the ECS cluster creates an SNS Topic to as part of a system to drain instances of tasks when the instance is being shut down. If this property is provided, then this key will be used to encrypt the contents of that SNS Topic. See [SNS Data Encryption](https://docs.aws.amazon.com/sns/latest/dg/sns-data-encryption.html) for more information.Default: The SNS Topic will not be encrypted.
-
builder
-