BatchDeleteUniqueId
Source:
src/AWS/EntityResolution/BatchDeleteUniqueId.ts
Runtime binding for entityresolution:BatchDeleteUniqueId.
Deletes unique IDs (and their match associations) from the bound matching
workflow’s internal match store. Provide the implementation with
Effect.provide(AWS.EntityResolution.BatchDeleteUniqueIdHttp).
Real-Time Matching
Section titled “Real-Time Matching”// init — bind the operation to the workflowconst batchDeleteUniqueId = yield* AWS.EntityResolution.BatchDeleteUniqueId(workflow);
// runtimeconst { deleted, errors } = yield* batchDeleteUniqueId({ uniqueIds: ["1", "2"],});