Class: Aws::CustomerProfiles::Types::MatchItem
- Inherits:
-
Struct
- Object
- Struct
- Aws::CustomerProfiles::Types::MatchItem
- Includes:
- Structure
- Defined in:
- 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.
5142 5143 5144 5145 5146 5147 5148 |
# File 'lib/aws-sdk-customerprofiles/types.rb', line 5142 class MatchItem < Struct.new( :match_id, :profile_ids, :confidence_score) SENSITIVE = [] include Aws::Structure end |