interface IpamCidrConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.CloudFront.CfnAnycastIpListPropsMixin.IpamCidrConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awscloudfront#CfnAnycastIpListPropsMixin_IpamCidrConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.cloudfront.CfnAnycastIpListPropsMixin.IpamCidrConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_cloudfront.CfnAnycastIpListPropsMixin.IpamCidrConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_cloudfront » CfnAnycastIpListPropsMixin » 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/cfn-property-mixins';
const ipamCidrConfigProperty: cloudfront.CfnAnycastIpListPropsMixin.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
(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.

.NET
Go
Java
Python
TypeScript