interface ProvisionedCidrProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EC2.Mixins.CfnIPAMPoolPropsMixin.ProvisionedCidrProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsec2/mixins#CfnIPAMPoolPropsMixin_ProvisionedCidrProperty |
Java | software.amazon.awscdk.mixins.preview.services.ec2.mixins.CfnIPAMPoolPropsMixin.ProvisionedCidrProperty |
Python | aws_cdk.mixins_preview.aws_ec2.mixins.CfnIPAMPoolPropsMixin.ProvisionedCidrProperty |
TypeScript | @aws-cdk/mixins-preview » aws_ec2 » mixins » CfnIPAMPoolPropsMixin » 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 { mixins as ec2_mixins } from '@aws-cdk/mixins-preview/aws-ec2';
const provisionedCidrProperty: ec2_mixins.CfnIPAMPoolPropsMixin.ProvisionedCidrProperty = {
cidr: 'cidr',
};
Properties
| Name | Type | Description |
|---|---|---|
| cidr? | string | The CIDR provisioned to the IPAM pool. |
cidr?
Type:
string
(optional)
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 .

.NET
Go
Java
Python
TypeScript