interface AnycastIpListProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.CloudFront.CfnAnycastIpList.AnycastIpListProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awscloudfront#CfnAnycastIpList_AnycastIpListProperty |
![]() | software.amazon.awscdk.services.cloudfront.CfnAnycastIpList.AnycastIpListProperty |
![]() | aws_cdk.aws_cloudfront.CfnAnycastIpList.AnycastIpListProperty |
![]() | 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',
};
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. |
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
.