Interface AllocateIpv6CidrRequest
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
AllocateIpv6CidrRequest.Jsii$Proxy
@Generated(value="jsii-pacmak/1.120.0 (build 192dc88)",
date="2025-12-05T22:26:34.621Z")
@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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forAllocateIpv6CidrRequeststatic final classAn implementation forAllocateIpv6CidrRequest -
Method Summary
Modifier and TypeMethodDescriptionbuilder()List of subnets allocated with IPv4 CIDRs.The IPv6 CIDRs to be allocated to the subnets.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAllocatedSubnets
List of subnets allocated with IPv4 CIDRs. -
getIpv6Cidrs
The IPv6 CIDRs to be allocated to the subnets. -
builder
- Returns:
- a
AllocateIpv6CidrRequest.BuilderofAllocateIpv6CidrRequest
-