Class: Aws::EKS::Types::UpgradePolicyRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::EKS::Types::UpgradePolicyRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-eks/types.rb
Overview
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*.]
[1]: docs.aws.amazon.com/eks/latest/userguide/extended-support-control.html
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#support_type ⇒ String
If the cluster is set to ‘EXTENDED`, it will enter extended support at the end of standard support.
Instance Attribute Details
#support_type ⇒ String
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*.]
[1]: docs.aws.amazon.com/eks/latest/userguide/extended-support-control.html
7230 7231 7232 7233 7234 |
# File 'lib/aws-sdk-eks/types.rb', line 7230 class UpgradePolicyRequest < Struct.new( :support_type) SENSITIVE = [] include Aws::Structure end |