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 *.
Tagging
Section titled “Tagging”// initconst tagResource = yield* AWS.Transcribe.TagResource();
// runtimeyield* tagResource({ ResourceArn: "arn:aws:transcribe:us-east-1:123456789012:vocabulary/tenant-123", Tags: [{ Key: "tenant", Value: "123" }],});