Interface SubnetIpamOptions
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
SubnetIpamOptions.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-15T10:24:58.480Z")
@Stability(Stable)
public interface SubnetIpamOptions
extends software.amazon.jsii.JsiiSerializable
CIDR Allocated Subnets.
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.*; SubnetIpamOptions subnetIpamOptions = SubnetIpamOptions.builder() .allocatedSubnets(List.of(AllocatedSubnet.builder() .cidr("cidr") // the properties below are optional .ipv6Cidr("ipv6Cidr") .build())) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forSubnetIpamOptions
static final class
An implementation forSubnetIpamOptions
-
Method Summary
Modifier and TypeMethodDescriptionstatic SubnetIpamOptions.Builder
builder()
CIDR Allocations for Subnets.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAllocatedSubnets
CIDR Allocations for Subnets. -
builder
- Returns:
- a
SubnetIpamOptions.Builder
ofSubnetIpamOptions
-