Class: Aws::CustomerProfiles::Types::FoundByKeyValue

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 were used to find a profile returned in response to a SearchProfiles request.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#key_nameString

A searchable identifier of a customer profile.

Returns:

  • (String)


1761
1762
1763
1764
1765
1766
# File 'gems/aws-sdk-customerprofiles/lib/aws-sdk-customerprofiles/types.rb', line 1761

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

#valuesArray<String>

A list of key values.

Returns:

  • (Array<String>)


1761
1762
1763
1764
1765
1766
# File 'gems/aws-sdk-customerprofiles/lib/aws-sdk-customerprofiles/types.rb', line 1761

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