Class: Aws::EKS::Types::Taint
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::EKS::Types::Taint
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-eks/types.rb
 
Overview
A property that allows a node to repel a ‘Pod`. 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
- 
  
    
      #effect  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The effect of the taint.
 - 
  
    
      #key  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The key of the taint.
 - 
  
    
      #value  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The value of the taint.
 
Instance Attribute Details
#effect ⇒ String
The effect of the taint.
      5634 5635 5636 5637 5638 5639 5640  | 
    
      # File 'lib/aws-sdk-eks/types.rb', line 5634 class Taint < Struct.new( :key, :value, :effect) SENSITIVE = [] include Aws::Structure end  |