interface CfnIPAMPoolCidrMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EC2.Mixins.CfnIPAMPoolCidrMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsec2/mixins#CfnIPAMPoolCidrMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.ec2.mixins.CfnIPAMPoolCidrMixinProps |
Python | aws_cdk.mixins_preview.aws_ec2.mixins.CfnIPAMPoolCidrMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_ec2 » mixins » CfnIPAMPoolCidrMixinProps |
Properties for CfnIPAMPoolCidrPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ipampoolcidr.html
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 cfnIPAMPoolCidrMixinProps: ec2_mixins.CfnIPAMPoolCidrMixinProps = {
cidr: 'cidr',
ipamPoolId: 'ipamPoolId',
netmaskLength: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| cidr? | string | The CIDR provisioned to the IPAM pool. |
| ipam | string | The ID of the IPAM pool. |
| netmask | number | The netmask length of the CIDR you'd like to provision to a 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 .
ipamPoolId?
Type:
string
(optional)
The ID of the IPAM pool.
netmaskLength?
Type:
number
(optional)
The netmask length of the CIDR you'd like to provision to a pool.
Can be used for provisioning Amazon-provided IPv6 CIDRs to top-level pools and for provisioning CIDRs to pools with source pools. Cannot be used to provision BYOIP CIDRs to top-level pools. "NetmaskLength" or "Cidr" is required.

.NET
Go
Java
Python
TypeScript