interface IpamCidrConfigResultProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CloudFront.CfnAnycastIpList.IpamCidrConfigResultProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscloudfront#CfnAnycastIpList_IpamCidrConfigResultProperty |
Java | software.amazon.awscdk.services.cloudfront.CfnAnycastIpList.IpamCidrConfigResultProperty |
Python | aws_cdk.aws_cloudfront.CfnAnycastIpList.IpamCidrConfigResultProperty |
TypeScript | aws-cdk-lib » aws_cloudfront » CfnAnycastIpList » IpamCidrConfigResultProperty |
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 { aws_cloudfront as cloudfront } from 'aws-cdk-lib';
const ipamCidrConfigResultProperty: cloudfront.CfnAnycastIpList.IpamCidrConfigResultProperty = {
anycastIp: 'anycastIp',
cidr: 'cidr',
ipamPoolArn: 'ipamPoolArn',
status: 'status',
};
Properties
| Name | Type | Description |
|---|---|---|
| anycast | string | The specified Anycast IP address allocated from the IPAM pool for this CIDR configuration. |
| cidr? | string | The CIDR that specifies the IP address range for this IPAM configuration. |
| ipam | string | The Amazon Resource Name (ARN) of the IPAM pool that the CIDR block is assigned to. |
| status? | string | The current status of the IPAM CIDR configuration. |
anycastIp?
Type:
string
(optional)
The specified Anycast IP address allocated from the IPAM pool for this CIDR configuration.
cidr?
Type:
string
(optional)
The CIDR that specifies the IP address range for this IPAM configuration.
ipamPoolArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the IPAM pool that the CIDR block is assigned to.
status?
Type:
string
(optional)
The current status of the IPAM CIDR configuration.

.NET
Go
Java
Python
TypeScript