Protected
Removes a tag from the specified resource.
Use a bare-bones client and the command you need to make an API call.
import { IoTThingsGraphClient, UntagResourceCommand } from "@aws-sdk/client-iotthingsgraph"; // ES Modules import// const { IoTThingsGraphClient, UntagResourceCommand } = require("@aws-sdk/client-iotthingsgraph"); // CommonJS importconst client = new IoTThingsGraphClient(config);const input = { // UntagResourceRequest resourceArn: "STRING_VALUE", // required tagKeys: [ // TagKeyList // required "STRING_VALUE", ],};const command = new UntagResourceCommand(input);const response = await client.send(command);
UntagResourceCommandInput
UntagResourceCommandOutput
input
response
config
InternalFailureException (server fault)
InvalidRequestException (client fault)
ResourceAlreadyExistsException (client fault)
ThrottlingException (client fault)
Readonly
Static
Deprecated
Removes a tag from the specified 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.Throws
InternalFailureException (server fault)
Throws
InvalidRequestException (client fault)
Throws
ResourceAlreadyExistsException (client fault)
Throws
ThrottlingException (client fault)