CfnIPAMPoolCidrProps
- class aws_cdk.aws_ec2.CfnIPAMPoolCidrProps(*, ipam_pool_id, cidr=None, netmask_length=None)
- Bases: - object- Properties for defining a - CfnIPAMPoolCidr.- Parameters:
- ipam_pool_id ( - str) – The ID of the IPAM pool.
- cidr ( - Optional[- str]) – 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.
- netmask_length ( - Union[- int,- float,- None]) – 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.
 
- Link:
- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ipampoolcidr.html 
- ExampleMetadata:
- fixture=_generated 
 - Example: - # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_ec2 as ec2 cfn_iPAMPool_cidr_props = ec2.CfnIPAMPoolCidrProps( ipam_pool_id="ipamPoolId", # the properties below are optional cidr="cidr", netmask_length=123 ) - Attributes - cidr
- 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.
 - ipam_pool_id
- The ID of the IPAM pool. 
 - netmask_length
- 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.