Class: Aws::EKS::Types::UpdateTaintsPayload

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-eks/lib/aws-sdk-eks/types.rb

Overview

An object representing the details of an update to a taints payload. For more information, see Node taints on managed node groups in the Amazon EKS User Guide.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#add_or_update_taintsArray<Types::Taint>

Kubernetes taints to be added or updated.

Returns:



6159
6160
6161
6162
6163
6164
# File 'gems/aws-sdk-eks/lib/aws-sdk-eks/types.rb', line 6159

class UpdateTaintsPayload < Struct.new(
  :add_or_update_taints,
  :remove_taints)
  SENSITIVE = []
  include Aws::Structure
end

#remove_taintsArray<Types::Taint>

Kubernetes taints to remove.

Returns:



6159
6160
6161
6162
6163
6164
# File 'gems/aws-sdk-eks/lib/aws-sdk-eks/types.rb', line 6159

class UpdateTaintsPayload < Struct.new(
  :add_or_update_taints,
  :remove_taints)
  SENSITIVE = []
  include Aws::Structure
end