AllocateVpcIpv6CidrRequest
- class aws_cdk.aws_ec2.AllocateVpcIpv6CidrRequest(*, scope, vpc_id)
Bases:
object
Request for allocation of the VPC IPv6 CIDR.
- Parameters:
scope (
Construct
) – The VPC construct to attach to.vpc_id (
str
) – The id of the VPC.
- 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 import constructs as constructs # construct: constructs.Construct allocate_vpc_ipv6_cidr_request = ec2.AllocateVpcIpv6CidrRequest( scope=construct, vpc_id="vpcId" )
Attributes
- scope
The VPC construct to attach to.
- vpc_id
The id of the VPC.