Class DeleteStaticIpEgressGatewayCommandProtected

Delete the default Static IP Egress Gateway.

Example

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

import { NetworkingClient, DeleteStaticIpEgressGatewayCommand } from "@stedi/sdk-client-networking"; // ES Modules import
// const { NetworkingClient, DeleteStaticIpEgressGatewayCommand } = require("@stedi/sdk-client-networking"); // CommonJS import
const client = new NetworkingClient(config);
const input = { // DeleteStaticIpEgressGatewayInput
gatewayName: "STRING_VALUE", // required
idempotencyKey: "STRING_VALUE",
};
const command = new DeleteStaticIpEgressGatewayCommand(input);
const response = await client.send(command);
// { // DeleteStaticIpEgressGatewayOutput
// gatewayName: "STRING_VALUE", // required
// resourceDetail: { // DeleteResourceDetail
// idempotencyKey: "STRING_VALUE", // required
// },
// };

Param

DeleteStaticIpEgressGatewayCommandInput

Returns

DeleteStaticIpEgressGatewayCommandOutput

See

Throws

ProductUnavailableException (client fault)

Throws

ResourceAlreadyExistsException (client fault)

Throws

ResourceNotFoundException (client fault)

Throws

ResourceUnderChangeException (client fault)

Throws

ServiceException (server fault)

Throws

NetworkingServiceException

Base exception class for all service exceptions from Networking service.

Hierarchy

Constructors

Properties

Methods

Constructors

Properties

Methods

  • Returns EndpointParameterInstructions