Provision a CIDR to an IPAM pool. You can use this action to provision new CIDRs to a top-level pool or to transfer a CIDR from a top-level pool to a pool within it.
For more information, see Provision CIDRs to pools in the Amazon VPC IPAM User Guide.
Use a bare-bones client and the command you need to make an API call.
import { EC2Client, ProvisionIpamPoolCidrCommand } from "@aws-sdk/client-ec2"; // ES Modules import // const { EC2Client, ProvisionIpamPoolCidrCommand } = require("@aws-sdk/client-ec2"); // CommonJS import const client = new EC2Client(config); const command = new ProvisionIpamPoolCidrCommand(input); const response = await client.send(command);
ProvisionIpamPoolCidrCommandInput for command's input shape.
input
ProvisionIpamPoolCidrCommandOutput for command's response shape.
response
config for EC2Client's config shape.
config
Provision a CIDR to an IPAM pool. You can use this action to provision new CIDRs to a top-level pool or to transfer a CIDR from a top-level pool to a pool within it.
For more information, see Provision CIDRs to pools in the Amazon VPC IPAM User Guide.
Use a bare-bones client and the command you need to make an API call.
import { EC2Client, ProvisionIpamPoolCidrCommand } from "@aws-sdk/client-ec2"; // ES Modules import // const { EC2Client, ProvisionIpamPoolCidrCommand } = require("@aws-sdk/client-ec2"); // CommonJS import const client = new EC2Client(config); const command = new ProvisionIpamPoolCidrCommand(input); const response = await client.send(command);
ProvisionIpamPoolCidrCommandInput for command's
input
shape.ProvisionIpamPoolCidrCommandOutput for command's
response
shape.config for EC2Client's
config
shape.