Class: Aws::CustomerProfiles::Types::AdditionalSearchKey
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::CustomerProfiles::Types::AdditionalSearchKey
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-customerprofiles/types.rb
 
Overview
A data type pair that consists of a ‘KeyName` and `Values` list that is used in conjunction with the [KeyName] and [Values] parameters to search for profiles using the [SearchProfiles] API.
[1]: docs.aws.amazon.com/customerprofiles/latest/APIReference/API_SearchProfiles.html#customerprofiles-SearchProfiles-request-KeyName [2]: docs.aws.amazon.com/customerprofiles/latest/APIReference/API_SearchProfiles.html#customerprofiles-SearchProfiles-request-Values [3]: docs.aws.amazon.com/customerprofiles/latest/APIReference/API_SearchProfiles.html
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #key_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A searchable identifier of a customer profile.
 - 
  
    
      #values  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A list of key values.
 
Instance Attribute Details
#key_name ⇒ String
A searchable identifier of a customer profile.
      96 97 98 99 100 101  | 
    
      # File 'lib/aws-sdk-customerprofiles/types.rb', line 96 class AdditionalSearchKey < Struct.new( :key_name, :values) SENSITIVE = [] include Aws::Structure end  | 
  
#values ⇒ Array<String>
A list of key values.
      96 97 98 99 100 101  | 
    
      # File 'lib/aws-sdk-customerprofiles/types.rb', line 96 class AdditionalSearchKey < Struct.new( :key_name, :values) SENSITIVE = [] include Aws::Structure end  |