Enum MachineImageType

java.lang.Object
java.lang.Enum<MachineImageType>
software.amazon.awscdk.services.ecs.MachineImageType
All Implemented Interfaces:
Serializable, Comparable<MachineImageType>, java.lang.constant.Constable

@Generated(value="jsii-pacmak/1.97.0 (build 729de35)", date="2024-04-18T17:54:16.511Z") @Stability(Stable) public enum MachineImageType extends Enum<MachineImageType>
The machine image type.

Example:

 Vpc vpc;
 LaunchTemplate launchTemplate = LaunchTemplate.Builder.create(this, "ASG-LaunchTemplate")
         .instanceType(new InstanceType("t3.medium"))
         .machineImage(EcsOptimizedImage.amazonLinux2())
         .userData(UserData.forLinux())
         .build();
 AutoScalingGroup autoScalingGroup = AutoScalingGroup.Builder.create(this, "ASG")
         .vpc(vpc)
         .mixedInstancesPolicy(MixedInstancesPolicy.builder()
                 .instancesDistribution(InstancesDistribution.builder()
                         .onDemandPercentageAboveBaseCapacity(50)
                         .build())
                 .launchTemplate(launchTemplate)
                 .build())
         .build();
 Cluster cluster = Cluster.Builder.create(this, "Cluster").vpc(vpc).build();
 AsgCapacityProvider capacityProvider = AsgCapacityProvider.Builder.create(this, "AsgCapacityProvider")
         .autoScalingGroup(autoScalingGroup)
         .machineImageType(MachineImageType.AMAZON_LINUX_2)
         .build();
 cluster.addAsgCapacityProvider(capacityProvider);
 
  • Enum Constant Details

    • AMAZON_LINUX_2

      @Stability(Stable) public static final MachineImageType AMAZON_LINUX_2
      Amazon ECS-optimized Amazon Linux 2 AMI.
    • BOTTLEROCKET

      @Stability(Stable) public static final MachineImageType BOTTLEROCKET
      Bottlerocket AMI.
  • Method Details

    • values

      public static MachineImageType[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static MachineImageType valueOf(String name)
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum type has no constant with the specified name
      NullPointerException - if the argument is null