Class: Aws::CustomerProfiles::Types::MatchItem
- Inherits:
-
Struct
- Object
- Struct
- Aws::CustomerProfiles::Types::MatchItem
- Defined in:
- gems/aws-sdk-customerprofiles/lib/aws-sdk-customerprofiles/types.rb
Overview
The Match group object.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#confidence_score ⇒ Float
A number between 0 and 1, where a higher score means higher similarity.
-
#match_id ⇒ String
The unique identifiers for this group of profiles that match.
-
#profile_ids ⇒ Array<String>
A list of identifiers for profiles that match.
Instance Attribute Details
#confidence_score ⇒ Float
A number between 0 and 1, where a higher score means higher similarity. Examining match confidence scores lets you distinguish between groups of similar records in which the system is highly confident (which you may decide to merge), groups of similar records about which the system is uncertain (which you may decide to have reviewed by a human), and groups of similar records that the system deems to be unlikely (which you may decide to reject). Given confidence scores vary as per the data input, it should not be used an absolute measure of matching quality.
4786 4787 4788 4789 4790 4791 4792 |
# File 'gems/aws-sdk-customerprofiles/lib/aws-sdk-customerprofiles/types.rb', line 4786 class MatchItem < Struct.new( :match_id, :profile_ids, :confidence_score) SENSITIVE = [] include Aws::Structure end |
#match_id ⇒ String
The unique identifiers for this group of profiles that match.
4786 4787 4788 4789 4790 4791 4792 |
# File 'gems/aws-sdk-customerprofiles/lib/aws-sdk-customerprofiles/types.rb', line 4786 class MatchItem < Struct.new( :match_id, :profile_ids, :confidence_score) SENSITIVE = [] include Aws::Structure end |
#profile_ids ⇒ Array<String>
A list of identifiers for profiles that match.
4786 4787 4788 4789 4790 4791 4792 |
# File 'gems/aws-sdk-customerprofiles/lib/aws-sdk-customerprofiles/types.rb', line 4786 class MatchItem < Struct.new( :match_id, :profile_ids, :confidence_score) SENSITIVE = [] include Aws::Structure end |