import type * as transcribe from "@distilled.cloud/aws/transcribe"; import type * as Effect from "effect/Effect"; import * as Binding from "../../Binding.ts"; /** * Runtime binding for `transcribe:GetMedicalScribeJob` — read a Medical Scribe job's status and, once complete, the clinical note and transcript locations. * * Amazon Transcribe batch actions have no resource-level IAM; the host is * granted `transcribe:GetMedicalScribeJob` on `*`. * * ### Medical Scribe Jobs * **Example:** Poll a Medical Scribe Job * ```typescript * // init * const getMedicalScribeJob = yield* AWS.Transcribe.GetMedicalScribeJob(); * * // runtime * const { MedicalScribeJob } = yield* getMedicalScribeJob({ * MedicalScribeJobName: "my-visit", * }); * ``` * * @binding */ export interface GetMedicalScribeJob extends Binding.Service Effect.Effect<(request: transcribe.GetMedicalScribeJobRequest) => Effect.Effect>> { } export declare const GetMedicalScribeJob: GetMedicalScribeJob; //# sourceMappingURL=GetMedicalScribeJob.d.ts.map