Protected
Delete the default Static IP Egress Gateway.
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 importconst 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// },// };
DeleteStaticIpEgressGatewayCommandInput
DeleteStaticIpEgressGatewayCommandOutput
input
response
config
ProductUnavailableException (client fault)
ResourceAlreadyExistsException (client fault)
ResourceNotFoundException (client fault)
ResourceUnderChangeException (client fault)
ServiceException (server fault)
NetworkingServiceException
Base exception class for all service exceptions from Networking service.
Readonly
Static
Delete the default Static IP Egress Gateway.
Example
Use a bare-bones client and the command you need to make an API call.
Param
DeleteStaticIpEgressGatewayCommandInput
Returns
DeleteStaticIpEgressGatewayCommandOutput
See
input
shape.response
shape.config
shape.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.