Interface CfnAnycastIpList.IAnycastIpListProperty
An Anycast static IP list.
Namespace: Amazon.CDK.AWS.CloudFront
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IAnycastIpListProperty
Syntax (vb)
Public Interface IAnycastIpListProperty
Remarks
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"
};
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. |
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
System.String[]
Remarks
Arn
The Amazon Resource Name (ARN) of the Anycast static IP list.
string Arn { get; }
Property Value
System.String
Remarks
Id
The ID of the Anycast static IP list.
string Id { get; }
Property Value
System.String
Remarks
IpCount
The number of IP addresses in the Anycast static IP list.
double IpCount { get; }
Property Value
System.Double
Remarks
LastModifiedTime
The last time the Anycast static IP list was modified.
string LastModifiedTime { get; }
Property Value
System.String
Remarks
Name
The name of the Anycast static IP list.
string Name { get; }
Property Value
System.String
Remarks
Status
The status of the Anycast static IP list.
string Status { get; }
Property Value
System.String
Remarks
Valid values: Deployed
, Deploying
, or Failed
.