Class: Aws::EKS::Types::UpdateLabelsPayload

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#add_or_update_labelsHash<String,String>

The Kubernetes labels to add or update.

Returns:

  • (Hash<String,String>)


5909
5910
5911
5912
5913
5914
# File 'gems/aws-sdk-eks/lib/aws-sdk-eks/types.rb', line 5909

class UpdateLabelsPayload < Struct.new(
  :add_or_update_labels,
  :remove_labels)
  SENSITIVE = []
  include Aws::Structure
end

#remove_labelsArray<String>

The Kubernetes labels to remove.

Returns:

  • (Array<String>)


5909
5910
5911
5912
5913
5914
# File 'gems/aws-sdk-eks/lib/aws-sdk-eks/types.rb', line 5909

class UpdateLabelsPayload < Struct.new(
  :add_or_update_labels,
  :remove_labels)
  SENSITIVE = []
  include Aws::Structure
end