CfnSubnetCidrBlockProps
- class aws_cdk.aws_ec2.CfnSubnetCidrBlockProps(*, ipv6_cidr_block, subnet_id)
- Bases: - object- Properties for defining a - CfnSubnetCidrBlock.- Parameters:
- ipv6_cidr_block ( - str) – The IPv6 network range for the subnet, in CIDR notation. The subnet size must use a /64 prefix length. This parameter is required for an IPv6 only subnet.
- subnet_id ( - str) – The ID of the subnet.
 
- Link:
- 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. import aws_cdk.aws_ec2 as ec2 cfn_subnet_cidr_block_props = ec2.CfnSubnetCidrBlockProps( ipv6_cidr_block="ipv6CidrBlock", subnet_id="subnetId" ) - Attributes - ipv6_cidr_block
- The IPv6 network range for the subnet, in CIDR notation. The subnet size must use a /64 prefix length. - This parameter is required for an IPv6 only subnet. 
 - subnet_id
- The ID of the subnet.