Releases the specified address range that you provisioned for 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 using WithdrawByoipCidr and you must not have any IP addresses allocated from its
address range.
example
Use a bare-bones client and the command you need to make an API call.
Releases the specified address range that you provisioned for 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 using WithdrawByoipCidr and you must not have any IP addresses allocated from its address range.
Use a bare-bones client and the command you need to make an API call.
import { EC2Client, DeprovisionByoipCidrCommand } from "@aws-sdk/client-ec2"; // ES Modules import // const { EC2Client, DeprovisionByoipCidrCommand } = require("@aws-sdk/client-ec2"); // CommonJS import const client = new EC2Client(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 EC2Client's
config
shape.