Class: Aws::Connect::Types::SearchableSegmentAttributesCriteria
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Connect::Types::SearchableSegmentAttributesCriteria
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-connect/types.rb
 
Overview
The search criteria based on searchable segment attribute key and values to search on.
Constant Summary collapse
- SENSITIVE =
 [:key, :values]
Instance Attribute Summary collapse
- 
  
    
      #key  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The key containing a searchable segment attribute.
 - 
  
    
      #values  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The list of values to search for within a searchable segment attribute.
 
Instance Attribute Details
#key ⇒ String
The key containing a searchable segment attribute.
      21089 21090 21091 21092 21093 21094  | 
    
      # File 'lib/aws-sdk-connect/types.rb', line 21089 class SearchableSegmentAttributesCriteria < Struct.new( :key, :values) SENSITIVE = [:key, :values] include Aws::Structure end  | 
  
#values ⇒ Array<String>
The list of values to search for within a searchable segment attribute.
      21089 21090 21091 21092 21093 21094  | 
    
      # File 'lib/aws-sdk-connect/types.rb', line 21089 class SearchableSegmentAttributesCriteria < Struct.new( :key, :values) SENSITIVE = [:key, :values] include Aws::Structure end  |