Interface AddCapacityOptions
- All Superinterfaces:
AddAutoScalingGroupCapacityOptions
,CommonAutoScalingGroupProps
,software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
AddCapacityOptions.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-06T23:25:09.014Z")
@Stability(Stable)
public interface AddCapacityOptions
extends software.amazon.jsii.JsiiSerializable, AddAutoScalingGroupCapacityOptions, CommonAutoScalingGroupProps
The properties for adding instance capacity to an AutoScalingGroup.
Example:
Cluster cluster; cluster.addCapacity("graviton-cluster", AddCapacityOptions.builder() .minCapacity(2) .instanceType(new InstanceType("c6g.large")) .machineImage(EcsOptimizedImage.amazonLinux2(AmiHardwareType.ARM)) .build());
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forAddCapacityOptions
static final class
An implementation forAddCapacityOptions
-
Method Summary
Modifier and TypeMethodDescriptionstatic AddCapacityOptions.Builder
builder()
The EC2 instance type to use when launching instances into the AutoScalingGroup.default IMachineImage
The ECS-optimized AMI variant to use.Methods inherited from interface software.amazon.awscdk.services.ecs.AddAutoScalingGroupCapacityOptions
getCanContainersAccessInstanceRole, getMachineImageType, getSpotInstanceDraining, getTopicEncryptionKey
Methods inherited from interface software.amazon.awscdk.services.autoscaling.CommonAutoScalingGroupProps
getAllowAllOutbound, getAssociatePublicIpAddress, getAutoScalingGroupName, getBlockDevices, getCapacityRebalance, getCooldown, getDefaultInstanceWarmup, getDesiredCapacity, getGroupMetrics, getHealthCheck, getIgnoreUnmodifiedSizeProperties, getInstanceMonitoring, getKeyName, getKeyPair, getMaxCapacity, getMaxInstanceLifetime, getMinCapacity, getNewInstancesProtectedFromScaleIn, getNotifications, getSignals, getSpotPrice, getSsmSessionPermissions, getTerminationPolicies, getTerminationPolicyCustomLambdaFunctionArn, getUpdatePolicy, getVpcSubnets
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getInstanceType
The EC2 instance type to use when launching instances into the AutoScalingGroup. -
getMachineImage
The ECS-optimized AMI variant to use.The default is to use an ECS-optimized AMI of Amazon Linux 2 which is automatically updated to the latest version on every deployment. This will replace the instances in the AutoScalingGroup. Make sure you have not disabled task draining, to avoid downtime when the AMI updates.
To use an image that does not update on every deployment, pass:
EcsOptimizedImage machineImage = EcsOptimizedImage.amazonLinux2(AmiHardwareType.STANDARD, EcsOptimizedImageOptions.builder() .cachedInContext(true) .build());
For more information, see Amazon ECS-optimized AMIs.
You must define either
machineImage
ormachineImageType
, not both.Default: - Automatically updated, ECS-optimized Amazon Linux 2
-
builder
- Returns:
- a
AddCapacityOptions.Builder
ofAddCapacityOptions
-