IPAMAllocationReference

class aws_cdk.aws_ec2.IPAMAllocationReference(*, cidr, ipam_pool_allocation_id, ipam_pool_id)

Bases: object

A reference to a IPAMAllocation resource.

Parameters:
  • cidr (str) – The Cidr of the IPAMAllocation resource.

  • ipam_pool_allocation_id (str) – The IpamPoolAllocationId of the IPAMAllocation resource.

  • ipam_pool_id (str) – The IpamPoolId of the IPAMAllocation resource.

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_ec2 as ec2

i_pAMAllocation_reference = {
    "cidr": "cidr",
    "ipam_pool_allocation_id": "ipamPoolAllocationId",
    "ipam_pool_id": "ipamPoolId"
}

Attributes

cidr

The Cidr of the IPAMAllocation resource.

ipam_pool_allocation_id

The IpamPoolAllocationId of the IPAMAllocation resource.

ipam_pool_id

The IpamPoolId of the IPAMAllocation resource.