interface ControlPlaneScalingConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EKS.Mixins.CfnClusterPropsMixin.ControlPlaneScalingConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awseks/mixins#CfnClusterPropsMixin_ControlPlaneScalingConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.eks.mixins.CfnClusterPropsMixin.ControlPlaneScalingConfigProperty |
Python | aws_cdk.mixins_preview.aws_eks.mixins.CfnClusterPropsMixin.ControlPlaneScalingConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_eks » mixins » CfnClusterPropsMixin » 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 { mixins as eks_mixins } from '@aws-cdk/mixins-preview/aws-eks';
const controlPlaneScalingConfigProperty: eks_mixins.CfnClusterPropsMixin.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