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.
7044 7045 7046 7047 7048 7049 |
# File 'gems/aws-sdk-eks/lib/aws-sdk-eks/types.rb', line 7044 class UpdateTaintsPayload < Struct.new( :add_or_update_taints, :remove_taints) SENSITIVE = [] include Aws::Structure end |
#remove_taints ⇒ Array<Types::Taint>
Kubernetes taints to remove.
7044 7045 7046 7047 7048 7049 |
# File 'gems/aws-sdk-eks/lib/aws-sdk-eks/types.rb', line 7044 class UpdateTaintsPayload < Struct.new( :add_or_update_taints, :remove_taints) SENSITIVE = [] include Aws::Structure end |