Class: Aws::CustomerProfiles::Types::AdditionalSearchKey

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-customerprofiles/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.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#key_nameString

A searchable identifier of a customer profile.

Returns:

  • (String)


96
97
98
99
100
101
# File 'gems/aws-sdk-customerprofiles/lib/aws-sdk-customerprofiles/types.rb', line 96

class AdditionalSearchKey < Struct.new(
  :key_name,
  :values)
  SENSITIVE = []
  include Aws::Structure
end

#valuesArray<String>

A list of key values.

Returns:

  • (Array<String>)


96
97
98
99
100
101
# File 'gems/aws-sdk-customerprofiles/lib/aws-sdk-customerprofiles/types.rb', line 96

class AdditionalSearchKey < Struct.new(
  :key_name,
  :values)
  SENSITIVE = []
  include Aws::Structure
end