Class: Aws::EKS::Types::FargateProfileSelector
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::EKS::Types::FargateProfileSelector
 
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-eks/types.rb
Overview
An object representing an Fargate profile selector.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #labels  ⇒ Hash<String,String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The Kubernetes labels that the selector should match. 
- 
  
    
      #namespace  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The Kubernetes ‘namespace` that the selector should match. 
Instance Attribute Details
#labels ⇒ Hash<String,String>
The Kubernetes labels that the selector should match. A pod must contain all of the labels that are specified in the selector for it to be considered a match.
| 3068 3069 3070 3071 3072 3073 | # File 'lib/aws-sdk-eks/types.rb', line 3068 class FargateProfileSelector < Struct.new( :namespace, :labels) SENSITIVE = [] include Aws::Structure end | 
#namespace ⇒ String
The Kubernetes ‘namespace` that the selector should match.
| 3068 3069 3070 3071 3072 3073 | # File 'lib/aws-sdk-eks/types.rb', line 3068 class FargateProfileSelector < Struct.new( :namespace, :labels) SENSITIVE = [] include Aws::Structure end |