Interface AllocateIpv6CidrRequest

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
AllocateIpv6CidrRequest.Jsii$Proxy

@Generated(value="jsii-pacmak/1.101.0 (build b95fe5d)", date="2024-07-12T19:34:00.383Z") @Stability(Stable) public interface AllocateIpv6CidrRequest extends software.amazon.jsii.JsiiSerializable
Request for subnet IPv6 CIDRs to be allocated for a VPC.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.ec2.*;
 AllocateIpv6CidrRequest allocateIpv6CidrRequest = AllocateIpv6CidrRequest.builder()
         .allocatedSubnets(List.of(AllocatedSubnet.builder()
                 .cidr("cidr")
                 // the properties below are optional
                 .ipv6Cidr("ipv6Cidr")
                 .build()))
         .ipv6Cidrs(List.of("ipv6Cidrs"))
         .build();