aws-cdk-lib.aws_ec2.CfnIPAMPool.ProvisionedCidrProperty

interface ProvisionedCidrProperty

LanguageType name
.NETAmazon.CDK.AWS.EC2.CfnIPAMPool.ProvisionedCidrProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsec2#CfnIPAMPool_ProvisionedCidrProperty
Javasoftware.amazon.awscdk.services.ec2.CfnIPAMPool.ProvisionedCidrProperty
Pythonaws_cdk.aws_ec2.CfnIPAMPool.ProvisionedCidrProperty
TypeScript aws-cdk-lib » aws_ec2 » CfnIPAMPool » ProvisionedCidrProperty

The CIDR provisioned to the IPAM pool.

A CIDR is a representation of an IP address and its associated network mask (or netmask) and refers to a range of IP addresses. An IPv4 CIDR example is 10.24.34.0/23 . An IPv6 CIDR example is 2001:DB8::/32 .

This resource type does not allow you to provision a CIDR using the netmask length. To provision a CIDR using netmask length, use AWS::EC2::IPAMPoolCidr .

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_ec2 as ec2 } from 'aws-cdk-lib';
const provisionedCidrProperty: ec2.CfnIPAMPool.ProvisionedCidrProperty = {
  cidr: 'cidr',
};

Properties

NameTypeDescription
cidrstringThe CIDR provisioned to the IPAM pool.

cidr

Type: string

The CIDR provisioned to the IPAM pool.

A CIDR is a representation of an IP address and its associated network mask (or netmask) and refers to a range of IP addresses. An IPv4 CIDR example is 10.24.34.0/23 . An IPv6 CIDR example is 2001:DB8::/32 .