Interface CfnCluster.IUpgradePolicyProperty
The support policy to use for the cluster.
Namespace: Amazon.CDK.AWS.EKS
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IUpgradePolicyProperty
Syntax (vb)
Public Interface IUpgradePolicyProperty
Remarks
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 .
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.EKS;
var upgradePolicyProperty = new UpgradePolicyProperty {
SupportType = "supportType"
};
Synopsis
Properties
Support |
If the cluster is set to |
Properties
SupportType
If the cluster is set to EXTENDED
, it will enter extended support at the end of standard support.
virtual string SupportType { get; }
Property Value
System.
Remarks
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 .