Generate Match Id
| entityresolution_generate_match_id | R Documentation |
Generates or retrieves Match IDs for records using a rule-based matching workflow¶
Description¶
Generates or retrieves Match IDs for records using a rule-based matching workflow. When you call this operation, it processes your records against the workflow's matching rules to identify potential matches. For existing records, it retrieves their Match IDs and associated rules. For records without matches, it generates new Match IDs. The operation saves results to Amazon S3.
The processing type (processingType) you choose affects both the
accuracy and response time of the operation. Additional charges apply
for each API call, whether made through the Entity Resolution console or
directly via the API. The rule-based matching workflow must exist and be
active before calling this operation.
Usage¶
entityresolution_generate_match_id(workflowName, records,
processingType)
Arguments¶
workflowName |
[required] The name of the rule-based matching workflow. |
records |
[required] The records to match. |
processingType |
The processing mode that determines how Match IDs are generated and results are saved. Each mode provides different levels of accuracy, response time, and completeness of results. If not specified, defaults to
|
Value¶
A list with the following syntax:
list(
matchGroups = list(
list(
records = list(
list(
inputSourceARN = "string",
recordId = "string"
)
),
matchId = "string",
matchRule = "string"
)
),
failedRecords = list(
list(
inputSourceARN = "string",
uniqueId = "string",
errorMessage = "string"
)
)
)
Request syntax¶
svc$generate_match_id(
workflowName = "string",
records = list(
list(
inputSourceARN = "string",
uniqueId = "string",
recordAttributeMap = list(
"string"
)
)
),
processingType = "CONSISTENT"|"EVENTUAL"|"EVENTUAL_NO_LOOKUP"
)