Class: Aws::EKS::Types::UpdateLabelsPayload
- Inherits:
-
Struct
- Object
- Struct
- Aws::EKS::Types::UpdateLabelsPayload
- Defined in:
- gems/aws-sdk-eks/lib/aws-sdk-eks/types.rb
Overview
An object representing a Kubernetes label change for a managed node group.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#add_or_update_labels ⇒ Hash<String,String>
Kubernetes labels to be added or updated.
-
#remove_labels ⇒ Array<String>
Kubernetes labels to be removed.
Instance Attribute Details
#add_or_update_labels ⇒ Hash<String,String>
Kubernetes labels to be added or updated.
3934 3935 3936 3937 3938 3939 |
# File 'gems/aws-sdk-eks/lib/aws-sdk-eks/types.rb', line 3934 class UpdateLabelsPayload < Struct.new( :add_or_update_labels, :remove_labels) SENSITIVE = [] include Aws::Structure end |
#remove_labels ⇒ Array<String>
Kubernetes labels to be removed.
3934 3935 3936 3937 3938 3939 |
# File 'gems/aws-sdk-eks/lib/aws-sdk-eks/types.rb', line 3934 class UpdateLabelsPayload < Struct.new( :add_or_update_labels, :remove_labels) SENSITIVE = [] include Aws::Structure end |