Deletes the tags for a resource.
Use a bare-bones client and the command you need to make an API call.
import { NimbleClient, UntagResourceCommand } from "@aws-sdk/client-nimble"; // ES Modules import // const { NimbleClient, UntagResourceCommand } = require("@aws-sdk/client-nimble"); // CommonJS import const client = new NimbleClient(config); const command = new UntagResourceCommand(input); const response = await client.send(command);
UntagResourceCommandInput for command's input shape.
input
UntagResourceCommandOutput for command's response shape.
response
config for NimbleClient's config shape.
config
Deletes the tags for a resource.
Use a bare-bones client and the command you need to make an API call.
import { NimbleClient, UntagResourceCommand } from "@aws-sdk/client-nimble"; // ES Modules import // const { NimbleClient, UntagResourceCommand } = require("@aws-sdk/client-nimble"); // CommonJS import const client = new NimbleClient(config); const command = new UntagResourceCommand(input); const response = await client.send(command);
UntagResourceCommandInput for command's
input
shape.UntagResourceCommandOutput for command's
response
shape.config for NimbleClient's
config
shape.