ControlPlaneScalingTier

class aws_cdk.aws_eks.ControlPlaneScalingTier(*values)

Bases: Enum

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.

See:

https://docs.aws.amazon.com/eks/latest/userguide/eks-provisioned-control-plane.html

ExampleMetadata:

infused

Example:

from aws_cdk.lambda_layer_kubectl_v35 import KubectlV35Layer


eks.Cluster(self, "HighPerformanceCluster",
    version=eks.KubernetesVersion.V1_35,
    kubectl_layer=KubectlV35Layer(self, "kubectl"),
    control_plane_scaling_tier=eks.ControlPlaneScalingTier.TIER_XL
)

Attributes

STANDARD

Standard control plane (default, no additional cost).

TIER_2XL

2x extra-large provisioned tier.

TIER_4XL

4x extra-large provisioned tier.

TIER_8XL

8x extra-large provisioned tier.

TIER_XL

Extra-large provisioned tier.