Skip to main content

match_ids

Creates, updates, deletes, gets or lists a match_ids resource.

Overview

Namematch_ids
TypeResource
Idaws.entityresolution.match_ids

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
match_idstringThe unique identifiers for this group of match records.
match_rulestringThe rule the record matched on.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_match_idselectworkflow_name, regionReturns the corresponding Match ID of a customer record if the record has been processed in a rule-based matching workflow. You can call this API as a dry run of an incremental load on the rule-based matching workflow.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)
workflow_namestringThe name of the workflow.

SELECT examples

Returns the corresponding Match ID of a customer record if the record has been processed in a rule-based matching workflow. You can call this API as a dry run of an incremental load on the rule-based matching workflow.

SELECT
match_id,
match_rule
FROM aws.entityresolution.match_ids
WHERE workflow_name = '{{ workflow_name }}' -- required
AND region = '{{ region }}' -- required
;