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

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
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][1

request.

[1]: docs.aws.amazon.com/customerprofiles/latest/APIReference/API_SearchProfiles.html

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#key_nameString

A searchable identifier of a customer profile.

Returns:

  • (String)


2636
2637
2638
2639
2640
2641
# File 'lib/aws-sdk-customerprofiles/types.rb', line 2636

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

#valuesArray<String>

A list of key values.

Returns:

  • (Array<String>)


2636
2637
2638
2639
2640
2641
# File 'lib/aws-sdk-customerprofiles/types.rb', line 2636

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