CfnSubnetCidrBlockMixinProps
- class aws_cdk.mixins_preview.aws_ec2.mixins.CfnSubnetCidrBlockMixinProps(*, ipv6_cidr_block=None, ipv6_ipam_pool_id=None, ipv6_netmask_length=None, subnet_id=None)
Bases:
objectProperties for CfnSubnetCidrBlockPropsMixin.
- Parameters:
ipv6_cidr_block (
Optional[str]) – The IPv6 network range for the subnet, in CIDR notation.ipv6_ipam_pool_id (
Optional[str]) – An IPv6 IPAM pool ID for the subnet.ipv6_netmask_length (
Union[int,float,None]) – An IPv6 netmask length for the subnet.subnet_id (
Optional[str]) – The ID of the subnet.
- See:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetcidrblock.html
- 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.mixins_preview.aws_ec2 import mixins as ec2_mixins cfn_subnet_cidr_block_mixin_props = ec2_mixins.CfnSubnetCidrBlockMixinProps( ipv6_cidr_block="ipv6CidrBlock", ipv6_ipam_pool_id="ipv6IpamPoolId", ipv6_netmask_length=123, subnet_id="subnetId" )
Attributes
- ipv6_cidr_block
The IPv6 network range for the subnet, in CIDR notation.
- ipv6_ipam_pool_id
An IPv6 IPAM pool ID for the subnet.
- ipv6_netmask_length
An IPv6 netmask length for the subnet.
- subnet_id
The ID of the subnet.