GetTranscriptionJob
Source:
src/AWS/Transcribe/GetTranscriptionJob.ts
Runtime binding for transcribe:GetTranscriptionJob — read the status and
result of a batch transcription job started with
StartTranscriptionJob.
Account-scoped (no resource to manage): the binding takes no arguments and
grants the function transcribe:GetTranscriptionJob (the action has no
resource-level IAM). Poll TranscriptionJob.TranscriptionJobStatus until
it reaches COMPLETED or FAILED.
Polling a Transcription Job
Section titled “Polling a Transcription Job”// initconst getJob = yield* AWS.Transcribe.GetTranscriptionJob();
// runtimeconst { TranscriptionJob } = yield* getJob({ TranscriptionJobName: "my-job",});const status = TranscriptionJob?.TranscriptionJobStatus;