Skip to content

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

// init — bind the operation to the workflow
const batchDeleteUniqueId = yield* AWS.EntityResolution.BatchDeleteUniqueId(workflow);
// runtime
const { deleted, errors } = yield* batchDeleteUniqueId({
uniqueIds: ["1", "2"],
});