@Stability(value=Stable)
public static interface CfnIPAMPool.ProvisionedCidrProperty
extends software.amazon.jsii.JsiiSerializable
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 .
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnIPAMPool.ProvisionedCidrProperty.Builder
A builder for
CfnIPAMPool.ProvisionedCidrProperty |
static class |
CfnIPAMPool.ProvisionedCidrProperty.Jsii$Proxy
An implementation for
CfnIPAMPool.ProvisionedCidrProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnIPAMPool.ProvisionedCidrProperty.Builder |
builder() |
String |
getCidr()
The CIDR provisioned to the IPAM pool.
|
@Stability(value=Stable) @NotNull String getCidr()
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 .
@Stability(value=Stable) static CfnIPAMPool.ProvisionedCidrProperty.Builder builder()
Copyright © 2022. All rights reserved.