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.