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:DeleteVocabulary` — delete a custom vocabulary. * * Amazon Transcribe batch actions have no resource-level IAM; the host is * granted `transcribe:DeleteVocabulary` on `*`. * * ### Custom Vocabularies * **Example:** Delete a Custom Vocabulary * ```typescript * // init * const deleteVocabulary = yield* AWS.Transcribe.DeleteVocabulary(); * * // runtime * yield* deleteVocabulary({ VocabularyName: "tenant-123-vocabulary" }); * ``` * * @binding */ export interface DeleteVocabulary extends Binding.Service Effect.Effect<(request: transcribe.DeleteVocabularyRequest) => Effect.Effect>> { } export declare const DeleteVocabulary: DeleteVocabulary; //# sourceMappingURL=DeleteVocabulary.d.ts.map