Interface AddCapacityOptions

All Superinterfaces:
AddAutoScalingGroupCapacityOptions, CommonAutoScalingGroupProps, software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
AddCapacityOptions.Jsii$Proxy

@Generated(value="jsii-pacmak/1.103.1 (build bef2dea)", date="2024-09-11T18:01:15.112Z") @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());
 
  • Method Details

    • getInstanceType

      @Stability(Stable) @NotNull InstanceType getInstanceType()
      The EC2 instance type to use when launching instances into the AutoScalingGroup.
    • getMachineImage

      @Stability(Stable) @Nullable default IMachineImage 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 or machineImageType, not both.

      Default: - Automatically updated, ECS-optimized Amazon Linux 2

    • builder

      @Stability(Stable) static AddCapacityOptions.Builder builder()
      Returns:
      a AddCapacityOptions.Builder of AddCapacityOptions