We are excited to announce the developer preview of our new API documentation for AWS SDK for JavaScript v3. Please follow instructions on the landing page to leave us your feedback.
Protected
Removes one or more tags from the specified Direct Connect resource.
Use a bare-bones client and the command you need to make an API call.
import { DirectConnectClient, UntagResourceCommand } from "@aws-sdk/client-direct-connect"; // ES Modules import// const { DirectConnectClient, UntagResourceCommand } = require("@aws-sdk/client-direct-connect"); // CommonJS importconst client = new DirectConnectClient(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
DirectConnectClientException (client fault)
One or more parameters are not valid.
DirectConnectServerException (server fault)
A server-side error occurred.
DirectConnectServiceException
Base exception class for all service exceptions from DirectConnect service.
Readonly
Static
Removes one or more tags from the specified Direct Connect 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
DirectConnectClientException (client fault)
One or more parameters are not valid.
Throws
DirectConnectServerException (server fault)
A server-side error occurred.
Throws
DirectConnectServiceException
Base exception class for all service exceptions from DirectConnect service.