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:UntagResource` — remove tags from a Transcribe resource by ARN. * * Amazon Transcribe batch actions have no resource-level IAM; the host is * granted `transcribe:UntagResource` on `*`. * * ### Tagging * **Example:** Untag a Transcribe Resource * ```typescript * // init * const untagResource = yield* AWS.Transcribe.UntagResource(); * * // runtime * yield* untagResource({ * ResourceArn: "arn:aws:transcribe:us-east-1:123456789012:vocabulary/tenant-123", * TagKeys: ["tenant"], * }); * ``` * * @binding */ export interface UntagResource extends Binding.Service Effect.Effect<(request: transcribe.UntagResourceRequest) => Effect.Effect>> { } export declare const UntagResource: UntagResource; //# sourceMappingURL=UntagResource.d.ts.map