@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:38.177Z") @Stability(value=Stable) public interface CfnIPAMAllocationProps extends software.amazon.jsii.JsiiSerializable
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.*;
CfnIPAMAllocationProps cfnIPAMAllocationProps = CfnIPAMAllocationProps.builder()
.ipamPoolId("ipamPoolId")
// the properties below are optional
.cidr("cidr")
.description("description")
.netmaskLength(123)
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnIPAMAllocationProps.Builder
A builder for
CfnIPAMAllocationProps |
static class |
CfnIPAMAllocationProps.Jsii$Proxy
An implementation for
CfnIPAMAllocationProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnIPAMAllocationProps.Builder |
builder() |
default String |
getCidr()
The CIDR you would like to allocate from the IPAM pool.
|
default String |
getDescription()
A description for the allocation.
|
String |
getIpamPoolId()
The ID of the IPAM pool from which you would like to allocate a CIDR.
|
default Number |
getNetmaskLength()
The netmask length of the CIDR you would like to allocate from the IPAM pool.
|
@Stability(value=Stable) @NotNull String getIpamPoolId()
@Stability(value=Stable) @Nullable default String getCidr()
Possible values: Any available IPv4 or IPv6 CIDR.
@Stability(value=Stable) @Nullable default String getDescription()
@Stability(value=Stable) @Nullable default Number getNetmaskLength()
Possible netmask lengths for IPv4 addresses are 0 - 32. Possible netmask lengths for IPv6 addresses are 0 - 128.
@Stability(value=Stable) static CfnIPAMAllocationProps.Builder builder()
CfnIPAMAllocationProps.Builder of CfnIPAMAllocationPropsCopyright © 2022. All rights reserved.