Interface CfnIPAMPool.ProvisionedCidrProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnIPAMPool.ProvisionedCidrProperty.Jsii$Proxy
- Enclosing class:
CfnIPAMPool
@Stability(Stable)
public static interface CfnIPAMPool.ProvisionedCidrProperty
extends software.amazon.jsii.JsiiSerializable
The CIDR provisioned to the IPAM pool.
A CIDR is a representation of an IP address and its associated network mask (or netmask) and refers to a range of IP addresses. An IPv4 CIDR example is 10.24.34.0/23
. An IPv6 CIDR example is 2001:DB8::/32
.
This resource type does not allow you to provision a CIDR using the netmask length. To provision a CIDR using netmask length, use AWS::EC2::IPAMPoolCidr .
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.*; ProvisionedCidrProperty provisionedCidrProperty = ProvisionedCidrProperty.builder() .cidr("cidr") .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnIPAMPool.ProvisionedCidrProperty
static final class
An implementation forCfnIPAMPool.ProvisionedCidrProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCidr
The CIDR provisioned to the IPAM pool.A CIDR is a representation of an IP address and its associated network mask (or netmask) and refers to a range of IP addresses. An IPv4 CIDR example is
10.24.34.0/23
. An IPv6 CIDR example is2001:DB8::/32
. -
builder
-