Enum ControlPlaneScalingTier

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

@Generated(value="jsii-pacmak/1.138.0 (build 0ca7ee8)", date="2026-07-31T10:49:29.575Z") @Stability(Stable) public enum ControlPlaneScalingTier extends Enum<ControlPlaneScalingTier>
Control plane scaling tier for EKS Provisioned Control Plane.

Provisioned Control Plane allows cluster administrators to select from a set of scaling tiers to ensure high and predictable performance for demanding workloads such as AI training/inference, high-performance computing, or large-scale data processing.

Example:

 import software.amazon.awscdk.cdk.lambdalayer.kubectl.v35.KubectlV35Layer;
 Cluster.Builder.create(this, "HighPerformanceCluster")
         .version(KubernetesVersion.V1_35)
         .kubectlLayer(new KubectlV35Layer(this, "kubectl"))
         .controlPlaneScalingTier(ControlPlaneScalingTier.TIER_XL)
         .build();
 

See Also:
  • Enum Constant Details

    • STANDARD

      @Stability(Stable) public static final ControlPlaneScalingTier STANDARD
      Standard control plane (default, no additional cost).
    • TIER_XL

      @Stability(Stable) public static final ControlPlaneScalingTier TIER_XL
      Extra-large provisioned tier.
    • TIER_2XL

      @Stability(Stable) public static final ControlPlaneScalingTier TIER_2XL
      2x extra-large provisioned tier.
    • TIER_4XL

      @Stability(Stable) public static final ControlPlaneScalingTier TIER_4XL
      4x extra-large provisioned tier.
    • TIER_8XL

      @Stability(Stable) public static final ControlPlaneScalingTier TIER_8XL
      8x extra-large provisioned tier.
  • Method Details

    • values

      public static ControlPlaneScalingTier[] 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 ControlPlaneScalingTier 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