match_ids
Creates, updates, deletes, gets or lists a match_ids resource.
Overview
| Name | match_ids |
| Type | Resource |
| Id | aws.entityresolution.match_ids |
Fields
The following fields are returned by SELECT queries:
- get_match_id
| Name | Datatype | Description |
|---|---|---|
match_id | string | The unique identifiers for this group of match records. |
match_rule | string | The rule the record matched on. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_match_id | select | workflow_name, region | 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. |
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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
workflow_name | string | The name of the workflow. |
SELECT examples
- get_match_id
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
;