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.
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.
4141 4142 4143 4144 4145 4146 |
# File 'gems/aws-sdk-eks/lib/aws-sdk-eks/types.rb', line 4141 class UpdateTaintsPayload < Struct.new( :add_or_update_taints, :remove_taints) SENSITIVE = [] include Aws::Structure end |
#remove_taints ⇒ Array<Types::Taint>
Kubernetes taints to remove.
4141 4142 4143 4144 4145 4146 |
# File 'gems/aws-sdk-eks/lib/aws-sdk-eks/types.rb', line 4141 class UpdateTaintsPayload < Struct.new( :add_or_update_taints, :remove_taints) SENSITIVE = [] include Aws::Structure end |