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>

Kubernetes labels to be added or updated.

Returns:

  • (Hash<String,String>)


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_labelsArray<String>

Kubernetes labels to be removed.

Returns:

  • (Array<String>)


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