Create an IPAM. Amazon VPC IP Address Manager (IPAM) is a VPC feature that you can use
to automate your IP address management workflows including assigning, tracking,
troubleshooting, and auditing IP addresses across Amazon Web Services Regions and accounts
throughout your Amazon Web Services Organization.
For more information, see Create an IPAM in the Amazon VPC IPAM User Guide.
example
Use a bare-bones client and the command you need to make an API call.
Create an IPAM. Amazon VPC IP Address Manager (IPAM) is a VPC feature that you can use to automate your IP address management workflows including assigning, tracking, troubleshooting, and auditing IP addresses across Amazon Web Services Regions and accounts throughout your Amazon Web Services Organization.
For more information, see Create an IPAM in the Amazon VPC IPAM User Guide.
Use a bare-bones client and the command you need to make an API call.
import { EC2Client, CreateIpamCommand } from "@aws-sdk/client-ec2"; // ES Modules import // const { EC2Client, CreateIpamCommand } = require("@aws-sdk/client-ec2"); // CommonJS import const client = new EC2Client(config); const command = new CreateIpamCommand(input); const response = await client.send(command);
CreateIpamCommandInput for command's
input
shape.CreateIpamCommandOutput for command's
response
shape.config for EC2Client's
config
shape.