Interface AllocateVpcIpv6CidrRequest
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
AllocateVpcIpv6CidrRequest.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-22T02:24:00.121Z")
@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
Modifier and TypeInterfaceDescriptionstatic final class
A builder forAllocateVpcIpv6CidrRequest
static final class
An 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.Builder
ofAllocateVpcIpv6CidrRequest
-