Deletes a Tag.
Use a bare-bones client and the command you need to make an API call.
import { ApiGatewayV2Client, UntagResourceCommand } from "@aws-sdk/client-apigatewayv2"; // ES Modules import // const { ApiGatewayV2Client, UntagResourceCommand } = require("@aws-sdk/client-apigatewayv2"); // CommonJS import const client = new ApiGatewayV2Client(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 ApiGatewayV2Client's config shape.
config
Deletes a Tag.
Use a bare-bones client and the command you need to make an API call.
import { ApiGatewayV2Client, UntagResourceCommand } from "@aws-sdk/client-apigatewayv2"; // ES Modules import // const { ApiGatewayV2Client, UntagResourceCommand } = require("@aws-sdk/client-apigatewayv2"); // CommonJS import const client = new ApiGatewayV2Client(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 ApiGatewayV2Client's
config
shape.