GetIdMappingJob
Source:
src/AWS/EntityResolution/GetIdMappingJob.ts
Runtime binding for entityresolution:GetIdMappingJob.
Reads the status, metrics, and errors of an ID mapping job run of the
bound workflow. Provide the implementation with
Effect.provide(AWS.EntityResolution.GetIdMappingJobHttp).
Running ID Mapping Jobs
Section titled “Running ID Mapping Jobs”// init — bind the operation to the workflowconst getIdMappingJob = yield* AWS.EntityResolution.GetIdMappingJob(workflow);
// runtimeconst job = yield* getIdMappingJob({ jobId });console.log(job.status, job.metrics?.totalMappedRecords);