You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

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

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing UpdateLabelsPayload as input to an Aws::Client method, you can use a vanilla Hash:

{
  add_or_update_labels: {
    "labelKey" => "labelValue",
  },
  remove_labels: ["String"],
}

An object representing a Kubernetes label change for a managed node group.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#add_or_update_labelsHash<String,String>

Kubernetes labels to be added or updated.

Returns:

  • (Hash<String,String>)

    Kubernetes labels to be added or updated.

#remove_labelsArray<String>

Kubernetes labels to be removed.

Returns:

  • (Array<String>)

    Kubernetes labels to be removed.