interface ControlPlaneScalingConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.EKS.CfnCluster.ControlPlaneScalingConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awseks#CfnCluster_ControlPlaneScalingConfigProperty |
Java | software.amazon.awscdk.services.eks.CfnCluster.ControlPlaneScalingConfigProperty |
Python | aws_cdk.aws_eks.CfnCluster.ControlPlaneScalingConfigProperty |
TypeScript | aws-cdk-lib » aws_eks » CfnCluster » ControlPlaneScalingConfigProperty |
The control plane scaling tier configuration.
For more information, see EKS Provisioned Control Plane in the Amazon EKS User Guide.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_eks as eks } from 'aws-cdk-lib';
const controlPlaneScalingConfigProperty: eks.CfnCluster.ControlPlaneScalingConfigProperty = {
tier: 'tier',
};
Properties
| Name | Type | Description |
|---|---|---|
| tier? | string | The control plane scaling tier configuration. |
tier?
Type:
string
(optional)
The control plane scaling tier configuration.
Available options are standard , tier-xl , tier-2xl , or tier-4xl . For more information, see EKS Provisioned Control Plane in the Amazon EKS User Guide.

.NET
Go
Java
Python
TypeScript