entityresolution_generate_match_id: Generates or retrieves Match IDs for records using a...

View source: R/entityresolution_operations.R

entityresolution_generate_match_idR 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.

See https://www.paws-r-sdk.com/docs/entityresolution_generate_match_id/ for full documentation.

Usage

entityresolution_generate_match_id(
  workflowName,
  records,
  processingType = NULL
)

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 CONSISTENT.

CONSISTENT: Performs immediate lookup and matching against all existing records, with results saved synchronously. Provides highest accuracy but slower response time.

EVENTUAL (shown as Background in the console): Performs initial match ID lookup or generation immediately, with record updates processed asynchronously in the background. Offers faster initial response time, with complete matching results available later in S3.

EVENTUAL_NO_LOOKUP (shown as Quick ID generation in the console): Generates new match IDs without checking existing matches, with updates processed asynchronously. Provides fastest response time but should only be used for records known to be unique.


paws.analytics documentation built on May 30, 2026, 9:16 a.m.