Interface VpcIpamOptions
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
VpcIpamOptions.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2025-01-15T21:09:18.314Z")
@Stability(Stable)
public interface VpcIpamOptions
extends software.amazon.jsii.JsiiSerializable
CIDR Allocated 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.*; VpcIpamOptions vpcIpamOptions = VpcIpamOptions.builder() .cidrBlock("cidrBlock") .ipv4IpamPoolId("ipv4IpamPoolId") .ipv4NetmaskLength(123) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forVpcIpamOptions
static final class
An implementation forVpcIpamOptions
-
Method Summary
Modifier and TypeMethodDescriptionstatic VpcIpamOptions.Builder
builder()
default String
CIDR Block for Vpc.default String
ipv4 IPAM Pool Id.default Number
CIDR Mask for Vpc.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCidrBlock
CIDR Block for Vpc.Default: - Only required when Ipam has concrete allocation available for static Vpc
-
getIpv4IpamPoolId
ipv4 IPAM Pool Id.Default: - Only required when using AWS Ipam
-
getIpv4NetmaskLength
CIDR Mask for Vpc.Default: - Only required when using AWS Ipam
-
builder
- Returns:
- a
VpcIpamOptions.Builder
ofVpcIpamOptions
-