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

Class: Aws::EKS::Types::UpdateNodegroupConfigRequest

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

Overview

Note:

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

{
  cluster_name: "String", # required
  nodegroup_name: "String", # required
  labels: {
    add_or_update_labels: {
      "labelKey" => "labelValue",
    },
    remove_labels: ["String"],
  },
  scaling_config: {
    min_size: 1,
    max_size: 1,
    desired_size: 1,
  },
  client_request_token: "String",
}

Instance Attribute Summary collapse

Instance Attribute Details

#client_request_tokenString

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.

Returns:

  • (String)

    Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.

#cluster_nameString

The name of the Amazon EKS cluster that the managed node group resides in.

Returns:

  • (String)

    The name of the Amazon EKS cluster that the managed node group resides in.

#labelsTypes::UpdateLabelsPayload

The Kubernetes labels to be applied to the nodes in the node group after the update.

Returns:

#nodegroup_nameString

The name of the managed node group to update.

Returns:

  • (String)

    The name of the managed node group to update.

#scaling_configTypes::NodegroupScalingConfig

The scaling configuration details for the Auto Scaling group after the update.

Returns: