DescribeSigningJob
Source:
src/AWS/Signer/DescribeSigningJob.ts
Runtime binding for signer:DescribeSigningJob.
Reads a signing job by the jobId returned from StartSigningJob /
SignPayload — its status (InProgress, Succeeded, Failed), the
signed object’s S3 location, and the signature expiry. Account-level
operation — job ids are chosen per request at runtime, so the binding takes
no resource argument. Provide the implementation with
Effect.provide(AWS.Signer.DescribeSigningJobHttp).
Observing Signing Jobs
Section titled “Observing Signing Jobs”// init — account-level binding, no resource argumentconst describeSigningJob = yield* AWS.Signer.DescribeSigningJob();
// runtimeconst job = yield* describeSigningJob({ jobId });const signedKey = job.signedObject?.s3?.key;