CustomerProfiles / Client / get_similar_profiles
get_similar_profiles#
- CustomerProfiles.Client.get_similar_profiles(**kwargs)#
Returns a set of profiles that belong to the same matching group using the
matchId
orprofileId
. You can also specify the type of matching that you want for finding similar profiles using eitherRULE_BASED_MATCHING
orML_BASED_MATCHING
.See also: AWS API Documentation
Request Syntax
response = client.get_similar_profiles( NextToken='string', MaxResults=123, DomainName='string', MatchType='RULE_BASED_MATCHING'|'ML_BASED_MATCHING', SearchKey='string', SearchValue='string' )
- Parameters:
NextToken (string) – The pagination token from the previous
GetSimilarProfiles
API call.MaxResults (integer) – The maximum number of objects returned per page.
DomainName (string) –
[REQUIRED]
The unique name of the domain.
MatchType (string) –
[REQUIRED]
Specify the type of matching to get similar profiles for.
SearchKey (string) –
[REQUIRED]
The string indicating the search key to be used.
SearchValue (string) –
[REQUIRED]
The string based on
SearchKey
to be searched for similar profiles.
- Return type:
dict
- Returns:
Response Syntax
{ 'ProfileIds': [ 'string', ], 'MatchId': 'string', 'MatchType': 'RULE_BASED_MATCHING'|'ML_BASED_MATCHING', 'RuleLevel': 123, 'ConfidenceScore': 123.0, 'NextToken': 'string' }
Response Structure
(dict) –
ProfileIds (list) –
Set of ``profileId``s that belong to the same matching group.
(string) –
MatchId (string) –
The string
matchId
that the similar profiles belong to.MatchType (string) –
Specify the type of matching to get similar profiles for.
RuleLevel (integer) –
The integer rule level that the profiles matched on.
ConfidenceScore (float) –
It only has value when the
MatchType
isML_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.NextToken (string) –
The pagination token from the previous
GetSimilarProfiles
API call.
Exceptions
CustomerProfiles.Client.exceptions.BadRequestException
CustomerProfiles.Client.exceptions.AccessDeniedException
CustomerProfiles.Client.exceptions.ResourceNotFoundException
CustomerProfiles.Client.exceptions.ThrottlingException
CustomerProfiles.Client.exceptions.InternalServerException