Interface CfnAnycastIpList.IAnycastIpListProperty
An Anycast static IP list.
Namespace: Amazon.CDK.AWS.CloudFront
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnAnycastIpList.IAnycastIpListProperty
Syntax (vb)
Public Interface CfnAnycastIpList.IAnycastIpListProperty
Remarks
For more information, see Request Anycast static IPs to use for allowlisting in the Amazon CloudFront Developer Guide .
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.CloudFront;
var anycastIpListProperty = new AnycastIpListProperty {
AnycastIps = new [] { "anycastIps" },
Arn = "arn",
Id = "id",
IpCount = 123,
LastModifiedTime = "lastModifiedTime",
Name = "name",
Status = "status",
// the properties below are optional
IpAddressType = "ipAddressType"
};
Synopsis
Properties
| AnycastIps | The static IP addresses that are allocated to the Anycast static IP list. |
| Arn | The Amazon Resource Name (ARN) of the Anycast static IP list. |
| Id | The ID of the Anycast static IP list. |
| IpAddressType | The IP address type for the Anycast static IP list. |
| IpCount | The number of IP addresses in the Anycast static IP list. |
| LastModifiedTime | The last time the Anycast static IP list was modified. |
| Name | The name of the Anycast static IP list. |
| Status | The status of the Anycast static IP list. |
Properties
AnycastIps
The static IP addresses that are allocated to the Anycast static IP list.
string[] AnycastIps { get; }
Property Value
string[]
Remarks
Arn
The Amazon Resource Name (ARN) of the Anycast static IP list.
string Arn { get; }
Property Value
Remarks
Id
The ID of the Anycast static IP list.
string Id { get; }
Property Value
Remarks
IpAddressType
The IP address type for the Anycast static IP list.
string? IpAddressType { get; }
Property Value
Remarks
IpCount
The number of IP addresses in the Anycast static IP list.
double IpCount { get; }
Property Value
Remarks
LastModifiedTime
The last time the Anycast static IP list was modified.
string LastModifiedTime { get; }
Property Value
Remarks
Name
The name of the Anycast static IP list.
string Name { get; }
Property Value
Remarks
Status
The status of the Anycast static IP list.
string Status { get; }
Property Value
Remarks
Valid values: Deployed , Deploying , or Failed .