Interface CfnCluster.UpgradePolicyProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCluster.UpgradePolicyProperty.Jsii$Proxy
- Enclosing class:
CfnCluster
@Stability(Stable)
public static interface CfnCluster.UpgradePolicyProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.eks.*; UpgradePolicyProperty upgradePolicyProperty = UpgradePolicyProperty.builder() .supportType("supportType") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnCluster.UpgradePolicyProperty
static final class
An implementation forCfnCluster.UpgradePolicyProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getSupportType
If the cluster is set toEXTENDED
, 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 .
- See Also:
-
builder
-