class Aws::EKS::Types::UpdateTaintsPayload

An object representing the details of an update to a taints payload.

@note When making an API call, you may pass UpdateTaintsPayload

data as a hash:

    {
      add_or_update_taints: [
        {
          key: "taintKey",
          value: "taintValue",
          effect: "NO_SCHEDULE", # accepts NO_SCHEDULE, NO_EXECUTE, PREFER_NO_SCHEDULE
        },
      ],
      remove_taints: [
        {
          key: "taintKey",
          value: "taintValue",
          effect: "NO_SCHEDULE", # accepts NO_SCHEDULE, NO_EXECUTE, PREFER_NO_SCHEDULE
        },
      ],
    }

@!attribute [rw] add_or_update_taints

Kubernetes taints to be added or updated.
@return [Array<Types::Taint>]

@!attribute [rw] remove_taints

Kubernetes taints to be removed.
@return [Array<Types::Taint>]

@see docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/UpdateTaintsPayload AWS API Documentation

Constants

SENSITIVE