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:TagResource` — add tags to a Transcribe resource (jobs, vocabularies, filters, categories, or models) by ARN. * * Amazon Transcribe batch actions have no resource-level IAM; the host is * granted `transcribe:TagResource` on `*`. * * ### Tagging * **Example:** Tag a Transcribe Resource * ```typescript * // init * const tagResource = yield* AWS.Transcribe.TagResource(); * * // runtime * yield* tagResource({ * ResourceArn: "arn:aws:transcribe:us-east-1:123456789012:vocabulary/tenant-123", * Tags: [{ Key: "tenant", Value: "123" }], * }); * ``` * * @binding */ export interface TagResource extends Binding.Service Effect.Effect<(request: transcribe.TagResourceRequest) => Effect.Effect>> { } export declare const TagResource: TagResource; //# sourceMappingURL=TagResource.d.ts.map