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