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