Jump to Content

Class UntagResourceCommandProtected

This operation removes one or more tags from a resource.

Example

Use a bare-bones client and the command you need to make an API call.

import { DataExchangeClient, UntagResourceCommand } from "@aws-sdk/client-dataexchange"; // ES Modules import
// const { DataExchangeClient, UntagResourceCommand } = require("@aws-sdk/client-dataexchange"); // CommonJS import
const client = new DataExchangeClient(config);
const input = { // UntagResourceRequest
ResourceArn: "STRING_VALUE", // required
TagKeys: [ // ListOf__string // required
"STRING_VALUE",
],
};
const command = new UntagResourceCommand(input);
const response = await client.send(command);

Param

UntagResourceCommandInput

Returns

UntagResourceCommandOutput

See

Hierarchy

Constructors

Properties

middlewareStack: MiddlewareStack<UntagResourceCommandInput, UntagResourceCommandOutput>

Methods