aws.customer_profiles.get_similar_profiles
Example SQL Queries
SELECT * FROMaws.customer_profiles.get_similar_profilesWHERE"domain_name" = 'VALUE'AND "match_type" = 'VALUE'AND "search_key" = 'VALUE'AND "search_value" = 'VALUE';Description
Returns a set of profiles that belong to the same matching group using the matchId or profileId. You can also specify the type of matching that you want for finding similar profiles using either RULE_BASED_MATCHING or ML_BASED_MATCHING.
Table Definition
| Column Name | Column Data Type |
|---|---|
| domain_name Required Input Column The unique name of the domain. | VARCHAR |
| match_type Required Input Column Specify the type of matching to get similar profiles for. | VARCHAR |
| search_key Required Input Column The string indicating the search key to be used. | VARCHAR |
| search_value Required Input Column The string based on SearchKey to be searched for similar profiles. | VARCHAR |
| max_results Input Column The maximum number of objects returned per page. | BIGINT |
| next_token Input Column The pagination token from the previous GetSimilarProfiles API call. | VARCHAR |
| _aws_profile Input Column The AWS profile defines the AWS identity used. It can be defined via credentials or by assuming a IAM role. | STRUCT( |
Show child fields
| |
| confidence_score It only has value when the MatchType is ML_BASED_MATCHING.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 as an absolute measure of matching quality. | DOUBLE |
| match_id The string matchId that the similar profiles belong to. | VARCHAR |
| profile_ids Set of profileIds that belong to the same matching group. | VARCHAR[] |
Show child fields
| |
| rule_level The integer rule level that the profiles matched on. | BIGINT |