Interface CfnAnycastIpList.IpamCidrConfigResultProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAnycastIpList.IpamCidrConfigResultProperty.Jsii$Proxy
- Enclosing class:
CfnAnycastIpList
@Stability(Stable)
public static interface CfnAnycastIpList.IpamCidrConfigResultProperty
extends software.amazon.jsii.JsiiSerializable
The result for the IPAM CIDR that defines a specific IP address range, IPAM pool, and associated Anycast IP address.
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.cloudfront.*;
IpamCidrConfigResultProperty ipamCidrConfigResultProperty = IpamCidrConfigResultProperty.builder()
.anycastIp("anycastIp")
.cidr("cidr")
.ipamPoolArn("ipamPoolArn")
.status("status")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnAnycastIpList.IpamCidrConfigResultPropertystatic final classAn implementation forCfnAnycastIpList.IpamCidrConfigResultProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe specified Anycast IP address allocated from the IPAM pool for this CIDR configuration.default StringgetCidr()The CIDR that specifies the IP address range for this IPAM configuration.default StringThe Amazon Resource Name (ARN) of the IPAM pool that the CIDR block is assigned to.default StringThe current status of the IPAM CIDR configuration.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAnycastIp
The specified Anycast IP address allocated from the IPAM pool for this CIDR configuration.- See Also:
-
getCidr
The CIDR that specifies the IP address range for this IPAM configuration.- See Also:
-
getIpamPoolArn
The Amazon Resource Name (ARN) of the IPAM pool that the CIDR block is assigned to.- See Also:
-
getStatus
The current status of the IPAM CIDR configuration.- See Also:
-
builder
-