interface CfnAnycastIpListMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.CloudFront.CfnAnycastIpListMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awscloudfront#CfnAnycastIpListMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.cloudfront.CfnAnycastIpListMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_cloudfront.CfnAnycastIpListMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_cloudfront » CfnAnycastIpListMixinProps |
Properties for CfnAnycastIpListPropsMixin.
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 cfnAnycastIpListMixinProps: cloudfront.CfnAnycastIpListMixinProps = {
ipAddressType: 'ipAddressType',
ipamCidrConfigs: [{
cidr: 'cidr',
ipamPoolArn: 'ipamPoolArn',
}],
ipCount: 123,
name: 'name',
tags: {
items: [{
key: 'key',
value: 'value',
}],
},
};
Properties
| Name | Type | Description |
|---|---|---|
| ip | string | The IP address type for the Anycast static IP list. |
| ip | number | The number of IP addresses in the Anycast static IP list. |
| ipam | IResolvable | (IResolvable | Ipam)[] | A list of IPAM CIDR configurations that define the IP address ranges, IPAM pools, and associated Anycast IP addresses. |
| name? | string | The name of the Anycast static IP list. |
| tags? | Tags | A complex type that contains zero or more Tag elements. |
ipAddressType?
Type:
string
(optional)
The IP address type for the Anycast static IP list.
ipCount?
Type:
number
(optional)
The number of IP addresses in the Anycast static IP list.
ipamCidrConfigs?
Type:
IResolvable | (IResolvable | Ipam)[]
(optional)
A list of IPAM CIDR configurations that define the IP address ranges, IPAM pools, and associated Anycast IP addresses.
name?
Type:
string
(optional)
The name of the Anycast static IP list.
tags?
Type:
Tags
(optional)
A complex type that contains zero or more Tag elements.

.NET
Go
Java
Python
TypeScript