Skip to content

UntagResource

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

// init
const untagResource = yield* AWS.Transcribe.UntagResource();
// runtime
yield* untagResource({
ResourceArn: "arn:aws:transcribe:us-east-1:123456789012:vocabulary/tenant-123",
TagKeys: ["tenant"],
});