Protected
This operation removes one or more tags from a resource.
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 importconst 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);
UntagResourceCommandInput
UntagResourceCommandOutput
input
response
config
Readonly
Static
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.
Param
UntagResourceCommandInput
Returns
UntagResourceCommandOutput
See
input
shape.response
shape.config
shape.