interface CfnAnycastIpListProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CloudFront.CfnAnycastIpListProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscloudfront#CfnAnycastIpListProps |
Java | software.amazon.awscdk.services.cloudfront.CfnAnycastIpListProps |
Python | aws_cdk.aws_cloudfront.CfnAnycastIpListProps |
TypeScript | aws-cdk-lib » aws_cloudfront » CfnAnycastIpListProps |
Properties for defining a CfnAnycastIpList.
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 cfnAnycastIpListProps: cloudfront.CfnAnycastIpListProps = {
ipCount: 123,
name: 'name',
// the properties below are optional
ipAddressType: 'ipAddressType',
tags: {
items: [{
key: 'key',
value: 'value',
}],
},
};
Properties
| Name | Type | Description |
|---|---|---|
| ip | number | The number of IP addresses in the Anycast static IP list. |
| name | string | The name of the Anycast static IP list. |
| ip | string | The IP address type for the Anycast static IP list. |
| tags? | Tags | A complex type that contains zero or more Tag elements. |
ipCount
Type:
number
The number of IP addresses in the Anycast static IP list.
name
Type:
string
The name of the Anycast static IP list.
ipAddressType?
Type:
string
(optional)
The IP address type for the Anycast static IP list.
tags?
Type:
Tags
(optional)
A complex type that contains zero or more Tag elements.

.NET
Go
Java
Python
TypeScript