Class: Aws::EKS::Types::UpdateTaintsPayload
- Inherits:
-
Struct
- Object
- Struct
- Aws::EKS::Types::UpdateTaintsPayload
- Includes:
- Structure
- Defined in:
- 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*.
[1]: docs.aws.amazon.com/eks/latest/userguide/node-taints-managed-node-groups.html
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#add_or_update_taints ⇒ Array<Types::Taint>
Kubernetes taints to be added or updated.
-
#remove_taints ⇒ Array<Types::Taint>
Kubernetes taints to remove.
Instance Attribute Details
#add_or_update_taints ⇒ Array<Types::Taint>
Kubernetes taints to be added or updated.
6730 6731 6732 6733 6734 6735 |
# File 'lib/aws-sdk-eks/types.rb', line 6730 class UpdateTaintsPayload < Struct.new( :add_or_update_taints, :remove_taints) SENSITIVE = [] include Aws::Structure end |
#remove_taints ⇒ Array<Types::Taint>
Kubernetes taints to remove.
6730 6731 6732 6733 6734 6735 |
# File 'lib/aws-sdk-eks/types.rb', line 6730 class UpdateTaintsPayload < Struct.new( :add_or_update_taints, :remove_taints) SENSITIVE = [] include Aws::Structure end |