interface IpamCidrConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CloudFront.CfnAnycastIpList.IpamCidrConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscloudfront#CfnAnycastIpList_IpamCidrConfigProperty |
Java | software.amazon.awscdk.services.cloudfront.CfnAnycastIpList.IpamCidrConfigProperty |
Python | aws_cdk.aws_cloudfront.CfnAnycastIpList.IpamCidrConfigProperty |
TypeScript | aws-cdk-lib » aws_cloudfront » CfnAnycastIpList » IpamCidrConfigProperty |
Configuration for an 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 ipamCidrConfigProperty: cloudfront.CfnAnycastIpList.IpamCidrConfigProperty = {
cidr: 'cidr',
ipamPoolArn: 'ipamPoolArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| 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. |
cidr
Type:
string
The CIDR that specifies the IP address range for this IPAM configuration.
ipamPoolArn
Type:
string
The Amazon Resource Name (ARN) of the IPAM pool that the CIDR block is assigned to.

.NET
Go
Java
Python
TypeScript