Class: Aws::EKS::Types::UpdateLabelsPayload
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::EKS::Types::UpdateLabelsPayload
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-eks/types.rb
 
Overview
An object representing a Kubernetes ‘label` change for a managed node group.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #add_or_update_labels  ⇒ Hash<String,String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The Kubernetes ‘labels` to add or update.
 - 
  
    
      #remove_labels  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The Kubernetes ‘labels` to remove.
 
Instance Attribute Details
#add_or_update_labels ⇒ Hash<String,String>
The Kubernetes ‘labels` to add or update.
      6181 6182 6183 6184 6185 6186  | 
    
      # File 'lib/aws-sdk-eks/types.rb', line 6181 class UpdateLabelsPayload < Struct.new( :add_or_update_labels, :remove_labels) SENSITIVE = [] include Aws::Structure end  | 
  
#remove_labels ⇒ Array<String>
The Kubernetes ‘labels` to remove.
      6181 6182 6183 6184 6185 6186  | 
    
      # File 'lib/aws-sdk-eks/types.rb', line 6181 class UpdateLabelsPayload < Struct.new( :add_or_update_labels, :remove_labels) SENSITIVE = [] include Aws::Structure end  |