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