Releases the specified address range that you provisioned to use with your Amazon Web Services resources
through bring your own IP addresses (BYOIP) and deletes the corresponding address pool.
Before you can release an address range, you must stop advertising it by using WithdrawByoipCidr and you must not have
any accelerators that are using static IP addresses allocated from its address range.
Releases the specified address range that you provisioned to use with your Amazon Web Services resources through bring your own IP addresses (BYOIP) and deletes the corresponding address pool.
Before you can release an address range, you must stop advertising it by using WithdrawByoipCidr and you must not have any accelerators that are using static IP addresses allocated from its address range.
For more information, see Bring your own IP addresses (BYOIP) in the Global Accelerator Developer Guide.
Use a bare-bones client and the command you need to make an API call.
import { GlobalAcceleratorClient, DeprovisionByoipCidrCommand } from "@aws-sdk/client-global-accelerator"; // ES Modules import // const { GlobalAcceleratorClient, DeprovisionByoipCidrCommand } = require("@aws-sdk/client-global-accelerator"); // CommonJS import const client = new GlobalAcceleratorClient(config); const command = new DeprovisionByoipCidrCommand(input); const response = await client.send(command);
DeprovisionByoipCidrCommandInput for command's
input
shape.DeprovisionByoipCidrCommandOutput for command's
response
shape.config for GlobalAcceleratorClient's
config
shape.