Class: Aws::EKS::Types::ControlPlanePlacementRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::EKS::Types::ControlPlanePlacementRequest
- Defined in:
- gems/aws-sdk-eks/lib/aws-sdk-eks/types.rb
Overview
The placement configuration for all the control plane instances of your local Amazon EKS cluster on an Amazon Web Services Outpost. For more information, see Capacity considerations in the Amazon EKS User Guide.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#group_name ⇒ String
The name of the placement group for the Kubernetes control plane instances.
-
#spread_level ⇒ String
Optional parameter to specify the placement group spread level for control plane instances.
Instance Attribute Details
#group_name ⇒ String
The name of the placement group for the Kubernetes control plane instances. This setting can't be changed after cluster creation.
1816 1817 1818 1819 1820 1821 |
# File 'gems/aws-sdk-eks/lib/aws-sdk-eks/types.rb', line 1816 class ControlPlanePlacementRequest < Struct.new( :group_name, :spread_level) SENSITIVE = [] include Aws::Structure end |
#spread_level ⇒ String
Optional parameter to specify the placement group spread level for control plane instances. If not provided, Amazon EKS will deploy control plane instances without a placement group.
1816 1817 1818 1819 1820 1821 |
# File 'gems/aws-sdk-eks/lib/aws-sdk-eks/types.rb', line 1816 class ControlPlanePlacementRequest < Struct.new( :group_name, :spread_level) SENSITIVE = [] include Aws::Structure end |