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:DeleteTranscriptionJob` — delete a batch transcription job and its transcript from the service-managed output location. * * Amazon Transcribe batch actions have no resource-level IAM; the host is * granted `transcribe:DeleteTranscriptionJob` on `*`. * * ### Batch Transcription Jobs * **Example:** Delete a Transcription Job * ```typescript * // init * const deleteTranscriptionJob = yield* AWS.Transcribe.DeleteTranscriptionJob(); * * // runtime * yield* deleteTranscriptionJob({ TranscriptionJobName: "my-job" }); * ``` * * @binding */ export interface DeleteTranscriptionJob extends Binding.Service Effect.Effect<(request: transcribe.DeleteTranscriptionJobRequest) => Effect.Effect>> { } export declare const DeleteTranscriptionJob: DeleteTranscriptionJob; //# sourceMappingURL=DeleteTranscriptionJob.d.ts.map