Class: Aws::EKS::Types::UpdateTaintsPayload
- Inherits:
-
Struct
- Object
- Struct
- Aws::EKS::Types::UpdateTaintsPayload
- 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
-
#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.
6360 6361 6362 6363 6364 6365 |
# File 'gems/aws-sdk-eks/lib/aws-sdk-eks/types.rb', line 6360 class UpdateTaintsPayload < Struct.new( :add_or_update_taints, :remove_taints) SENSITIVE = [] include Aws::Structure end |
#remove_taints ⇒ Array<Types::Taint>
Kubernetes taints to remove.
6360 6361 6362 6363 6364 6365 |
# File 'gems/aws-sdk-eks/lib/aws-sdk-eks/types.rb', line 6360 class UpdateTaintsPayload < Struct.new( :add_or_update_taints, :remove_taints) SENSITIVE = [] include Aws::Structure end |