Enum Class MachineImageType

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

@Generated(value="jsii-pacmak/1.110.0 (build 336b265)", date="2025-04-22T23:08:12.345Z") @Stability(Stable) public enum MachineImageType extends Enum<MachineImageType>
The machine image type.

Example:

 Cluster cluster;
 cluster.addAutoScalingGroupCapacity("BottlerocketNodes", AutoScalingGroupCapacityOptions.builder()
         .instanceType(new InstanceType("t3.small"))
         .minCapacity(2)
         .machineImageType(MachineImageType.BOTTLEROCKET)
         .build());
 
  • Enum Constant Details

    • AMAZON_LINUX_2

      @Stability(Stable) public static final MachineImageType AMAZON_LINUX_2
      Amazon EKS-optimized Linux 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 class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static MachineImageType valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null