Class: Aws::Connect::Types::SearchableContactAttributesCriteria
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Connect::Types::SearchableContactAttributesCriteria
 
 
- Defined in:
 - gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb
 
Overview
The search criteria based on user-defined contact attribute key and values to search on.
Constant Summary collapse
- SENSITIVE =
 [:key, :values]
Instance Attribute Summary collapse
- 
  
    
      #key  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The key containing a searchable user-defined contact attribute.
 - 
  
    
      #values  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The list of values to search for within a user-defined contact attribute.
 
Instance Attribute Details
#key ⇒ String
The key containing a searchable user-defined contact attribute.
      22823 22824 22825 22826 22827 22828  | 
    
      # File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 22823 class SearchableContactAttributesCriteria < Struct.new( :key, :values) SENSITIVE = [:key, :values] include Aws::Structure end  | 
  
#values ⇒ Array<String>
The list of values to search for within a user-defined contact attribute.
      22823 22824 22825 22826 22827 22828  | 
    
      # File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 22823 class SearchableContactAttributesCriteria < Struct.new( :key, :values) SENSITIVE = [:key, :values] include Aws::Structure end  |