interface AnycastIpListProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CloudFront.CfnAnycastIpList.AnycastIpListProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscloudfront#CfnAnycastIpList_AnycastIpListProperty |
Java | software.amazon.awscdk.services.cloudfront.CfnAnycastIpList.AnycastIpListProperty |
Python | aws_cdk.aws_cloudfront.CfnAnycastIpList.AnycastIpListProperty |
TypeScript | aws-cdk-lib » aws_cloudfront » CfnAnycastIpList » AnycastIpListProperty |
An Anycast static IP list.
For more information, see Request Anycast static IPs to use for allowlisting in the Amazon CloudFront Developer Guide .
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 anycastIpListProperty: cloudfront.CfnAnycastIpList.AnycastIpListProperty = {
anycastIps: ['anycastIps'],
arn: 'arn',
id: 'id',
ipCount: 123,
lastModifiedTime: 'lastModifiedTime',
name: 'name',
status: 'status',
// the properties below are optional
ipAddressType: 'ipAddressType',
ipamCidrConfigResults: [{
anycastIp: 'anycastIp',
cidr: 'cidr',
ipamPoolArn: 'ipamPoolArn',
status: 'status',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| anycast | string[] | The static IP addresses that are allocated to the Anycast static IP list. |
| arn | string | The Amazon Resource Name (ARN) of the Anycast static IP list. |
| id | string | The ID of the Anycast static IP list. |
| ip | number | The number of IP addresses in the Anycast static IP list. |
| last | string | The last time the Anycast static IP list was modified. |
| name | string | The name of the Anycast static IP list. |
| status | string | The status of the Anycast static IP list. |
| ip | string | The IP address type for the Anycast static IP list. |
| ipam | IResolvable | (IResolvable | Ipam)[] |
anycastIps
Type:
string[]
The static IP addresses that are allocated to the Anycast static IP list.
arn
Type:
string
The Amazon Resource Name (ARN) of the Anycast static IP list.
id
Type:
string
The ID of the Anycast static IP list.
ipCount
Type:
number
The number of IP addresses in the Anycast static IP list.
lastModifiedTime
Type:
string
The last time the Anycast static IP list was modified.
name
Type:
string
The name of the Anycast static IP list.
status
Type:
string
The status of the Anycast static IP list.
Valid values: Deployed , Deploying , or Failed .
ipAddressType?
Type:
string
(optional)
The IP address type for the Anycast static IP list.
ipamCidrConfigResults?
Type:
IResolvable | (IResolvable | Ipam)[]
(optional)

.NET
Go
Java
Python
TypeScript