interface UpgradePolicyProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.EKS.CfnCluster.UpgradePolicyProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awseks#CfnCluster_UpgradePolicyProperty |
![]() | software.amazon.awscdk.services.eks.CfnCluster.UpgradePolicyProperty |
![]() | aws_cdk.aws_eks.CfnCluster.UpgradePolicyProperty |
![]() | aws-cdk-lib » aws_eks » CfnCluster » UpgradePolicyProperty |
The support policy to use for the cluster.
Extended support allows you to remain on specific Kubernetes versions for longer. Clusters in extended support have higher costs. The default value is EXTENDED
. Use STANDARD
to disable extended support.
Learn more about EKS Extended Support 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 upgradePolicyProperty: eks.CfnCluster.UpgradePolicyProperty = {
supportType: 'supportType',
};
Properties
Name | Type | Description |
---|---|---|
support | string | If the cluster is set to EXTENDED , it will enter extended support at the end of standard support. |
supportType?
Type:
string
(optional)
If the cluster is set to EXTENDED
, it will enter extended support at the end of standard support.
If the cluster is set to STANDARD
, it will be automatically upgraded at the end of standard support.
Learn more about EKS Extended Support in the Amazon EKS User Guide .