GetJob
Source:
src/AWS/Location/GetJob.ts
Retrieves the status, configuration, and error report of a Location batch metadata job.
Runtime binding for the GetJob operation (IAM action
geo:GetJob), account-scoped — batch jobs are created at runtime so the
grant is on *. Provide the implementation with
Effect.provide(AWS.Location.GetJobHttp).
Managing Batch Jobs
Section titled “Managing Batch Jobs”const getJob = yield* Location.GetJob();
const job = yield* getJob({ JobId: jobId });// job.Status → "IN_PROGRESS" | "SUCCEEDED" | …