UntagResourceCommand

Removes one or more tags from the specified pipes.

Example Syntax

Use a bare-bones client and the command you need to make an API call.

import { PipesClient, UntagResourceCommand } from "@aws-sdk/client-pipes"; // ES Modules import
// const { PipesClient, UntagResourceCommand } = require("@aws-sdk/client-pipes"); // CommonJS import
const client = new PipesClient(config);
const input = { // UntagResourceRequest
  resourceArn: "STRING_VALUE", // required
  tagKeys: [ // TagKeyList // required
    "STRING_VALUE",
  ],
};
const command = new UntagResourceCommand(input);
const response = await client.send(command);
// {};

UntagResourceCommand Input

See UntagResourceCommandInput for more details

Parameter
Type
Description
resourceArn
Required
string | undefined

The ARN of the pipe.

tagKeys
Required
string[] | undefined

The list of tag keys to remove from the pipe.

UntagResourceCommand Output

Parameter
Type
Description
$metadata
Required
ResponseMetadata
Metadata pertaining to this request.

Throws

Name
Fault
Details
InternalException
server

This exception occurs due to unexpected causes.

NotFoundException
client

An entity that you specified does not exist.

ValidationException
client

Indicates that an error has occurred while performing a validate operation.

PipesServiceException
Base exception class for all service exceptions from Pipes service.