interface ProvisionedCidrProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.EC2.CfnIPAMPool.ProvisionedCidrProperty |
Java | software.amazon.awscdk.services.ec2.CfnIPAMPool.ProvisionedCidrProperty |
Python | aws_cdk.aws_ec2.CfnIPAMPool.ProvisionedCidrProperty |
TypeScript | @aws-cdk/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 * as ec2 from '@aws-cdk/aws-ec2';
const provisionedCidrProperty: ec2.CfnIPAMPool.ProvisionedCidrProperty = {
cidr: 'cidr',
};
Properties
Name | Type | Description |
---|---|---|
cidr | string | The 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
.