Class: AWSCDK::EKS::CfnCluster::ControlPlaneScalingConfigProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::EKS::CfnCluster::ControlPlaneScalingConfigProperty
- Defined in:
- eks/cfn_cluster.rb
Overview
The control plane scaling tier configuration.
For more information, see EKS Provisioned Control Plane in the Amazon EKS User Guide.
Instance Attribute Summary collapse
-
#tier ⇒ String?
readonly
The control plane scaling tier configuration.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(tier: nil) ⇒ ControlPlaneScalingConfigProperty
constructor
A new instance of ControlPlaneScalingConfigProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(tier: nil) ⇒ ControlPlaneScalingConfigProperty
Returns a new instance of ControlPlaneScalingConfigProperty.
1099 1100 1101 1102 |
# File 'eks/cfn_cluster.rb', line 1099 def initialize(tier: nil) @tier = tier Jsii::Type.check_type(@tier, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "tier") unless @tier.nil? end |
Instance Attribute Details
#tier ⇒ String? (readonly)
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.
1110 1111 1112 |
# File 'eks/cfn_cluster.rb', line 1110 def tier @tier end |
Class Method Details
.jsii_properties ⇒ Object
1112 1113 1114 1115 1116 |
# File 'eks/cfn_cluster.rb', line 1112 def self.jsii_properties { :tier => "tier", } end |
Instance Method Details
#to_jsii ⇒ Object
1118 1119 1120 1121 1122 1123 1124 |
# File 'eks/cfn_cluster.rb', line 1118 def to_jsii result = {} result.merge!({ "tier" => @tier, }) result.compact end |