Show / Hide Table of Contents

Class CfnCidrCollection.LocationProperty

Specifies the list of CIDR blocks for a CIDR location.

Inheritance
object
CfnCidrCollection.LocationProperty
Implements
CfnCidrCollection.ILocationProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.Route53
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnCidrCollection.LocationProperty : CfnCidrCollection.ILocationProperty
Syntax (vb)
Public Class CfnCidrCollection.LocationProperty Implements CfnCidrCollection.ILocationProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-cidrcollection-location.html

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.Route53;

             var locationProperty = new LocationProperty {
                 CidrList = new [] { "cidrList" },
                 LocationName = "locationName"
             };

Synopsis

Constructors

LocationProperty()

Specifies the list of CIDR blocks for a CIDR location.

Properties

CidrList

List of CIDR blocks.

LocationName

The CIDR collection location name.

Constructors

LocationProperty()

Specifies the list of CIDR blocks for a CIDR location.

public LocationProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-cidrcollection-location.html

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.Route53;

             var locationProperty = new LocationProperty {
                 CidrList = new [] { "cidrList" },
                 LocationName = "locationName"
             };

Properties

CidrList

List of CIDR blocks.

public string[] CidrList { get; set; }
Property Value

string[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-cidrcollection-location.html#cfn-route53-cidrcollection-location-cidrlist

LocationName

The CIDR collection location name.

public string LocationName { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-cidrcollection-location.html#cfn-route53-cidrcollection-location-locationname

Implements

CfnCidrCollection.ILocationProperty
Back to top Generated by DocFX