GetMatchingJob
Source:
src/AWS/EntityResolution/GetMatchingJob.ts
Runtime binding for entityresolution:GetMatchingJob.
Reads the status, metrics, and errors of a matching job run of the bound
workflow. Provide the implementation with
Effect.provide(AWS.EntityResolution.GetMatchingJobHttp).
Running Matching Jobs
Section titled “Running Matching Jobs”// init — bind the operation to the workflowconst getMatchingJob = yield* AWS.EntityResolution.GetMatchingJob(workflow);
// runtimeconst job = yield* getMatchingJob({ jobId });console.log(job.status, job.metrics?.matchIDs);