Interface AllocateVpcIpv6CidrRequest
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
AllocateVpcIpv6CidrRequest.Jsii$Proxy
@Generated(value="jsii-pacmak/1.119.0 (build 1634eac)",
date="2025-11-13T16:10:02.782Z")
@Stability(Stable)
public interface AllocateVpcIpv6CidrRequest
extends software.amazon.jsii.JsiiSerializable
Request for allocation of the VPC IPv6 CIDR.
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.*;
import software.constructs.*;
Construct construct;
AllocateVpcIpv6CidrRequest allocateVpcIpv6CidrRequest = AllocateVpcIpv6CidrRequest.builder()
.scope(construct)
.vpcId("vpcId")
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forAllocateVpcIpv6CidrRequeststatic final classAn implementation forAllocateVpcIpv6CidrRequest -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getScope
@Stability(Stable) @NotNull software.constructs.Construct getScope()The VPC construct to attach to. -
getVpcId
The id of the VPC. -
builder
- Returns:
- a
AllocateVpcIpv6CidrRequest.BuilderofAllocateVpcIpv6CidrRequest
-