SubnetIpamOptions

class aws_cdk.aws_ec2.SubnetIpamOptions(*, allocated_subnets)

Bases: object

Cidr Allocated Subnets.

Parameters:

allocated_subnets (Sequence[Union[AllocatedSubnet, Dict[str, Any]]]) – Cidr Allocations for Subnets.

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

subnet_ipam_options = ec2.SubnetIpamOptions(
    allocated_subnets=[ec2.AllocatedSubnet(
        cidr="cidr"
    )]
)

Attributes

allocated_subnets

Cidr Allocations for Subnets.