Skip to content

TagResource

Source: src/AWS/Transcribe/TagResource.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 *.

// 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" }],
});