interface AnycastIpListProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CloudFront.Mixins.CfnAnycastIpListPropsMixin.AnycastIpListProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscloudfront/mixins#CfnAnycastIpListPropsMixin_AnycastIpListProperty |
Java | software.amazon.awscdk.mixins.preview.services.cloudfront.mixins.CfnAnycastIpListPropsMixin.AnycastIpListProperty |
Python | aws_cdk.mixins_preview.aws_cloudfront.mixins.CfnAnycastIpListPropsMixin.AnycastIpListProperty |
TypeScript | @aws-cdk/mixins-preview » aws_cloudfront » mixins » CfnAnycastIpListPropsMixin » 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 { mixins as cloudfront_mixins } from '@aws-cdk/mixins-preview/aws-cloudfront';
const anycastIpListProperty: cloudfront_mixins.CfnAnycastIpListPropsMixin.AnycastIpListProperty = {
anycastIps: ['anycastIps'],
arn: 'arn',
id: 'id',
ipAddressType: 'ipAddressType',
ipamCidrConfigResults: [{
anycastIp: 'anycastIp',
cidr: 'cidr',
ipamPoolArn: 'ipamPoolArn',
status: 'status',
}],
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 | 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)[] | |
| 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[]
(optional)
The static IP addresses that are allocated to the Anycast static IP list.
arn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the Anycast static IP list.
id?
Type:
string
(optional)
The ID of the Anycast static IP list.
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.
ipamCidrConfigResults?
Type:
IResolvable | (IResolvable | Ipam)[]
(optional)
lastModifiedTime?
Type:
string
(optional)
The last time the Anycast static IP list was modified.
name?
Type:
string
(optional)
The name of the Anycast static IP list.
status?
Type:
string
(optional)
The status of the Anycast static IP list.
Valid values: Deployed , Deploying , or Failed .

.NET
Go
Java
Python
TypeScript