CreateIpv6CidrBlocksRequest

class aws_cdk.aws_ec2.CreateIpv6CidrBlocksRequest(*, ipv6_selected_cidr, subnet_count, size_mask=None)

Bases: object

Request for IPv6 CIDR block to be split up.

Parameters:
  • ipv6_selected_cidr (str) – The IPv6 CIDR block string representation.

  • subnet_count (Union[int, float]) – The number of subnets to assign CIDRs to.

  • size_mask (Optional[str]) – Size of the covered bits in the CIDR. Default: - 128 - 64 = /64 CIDR.

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

create_ipv6_cidr_blocks_request = ec2.CreateIpv6CidrBlocksRequest(
    ipv6_selected_cidr="ipv6SelectedCidr",
    subnet_count=123,

    # the properties below are optional
    size_mask="sizeMask"
)

Attributes

ipv6_selected_cidr

The IPv6 CIDR block string representation.

size_mask

Size of the covered bits in the CIDR.

Default:
  • 128 - 64 = /64 CIDR.

subnet_count

The number of subnets to assign CIDRs to.