Enum 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:
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionstatic ControlPlaneScalingTierReturns the enum constant of this type with the specified name.static ControlPlaneScalingTier[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
STANDARD
Standard control plane (default, no additional cost). -
TIER_XL
Extra-large provisioned tier. -
TIER_2XL
2x extra-large provisioned tier. -
TIER_4XL
4x extra-large provisioned tier. -
TIER_8XL
8x extra-large provisioned tier.
-
-
Method Details
-
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
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 nameNullPointerException- if the argument is null
-