Show / Hide Table of Contents

Class CfnRecordSetGroup.CidrRoutingConfigProperty

The object that is specified in resource record set object when you are linking a resource record set to a CIDR location.

Inheritance
object
CfnRecordSetGroup.CidrRoutingConfigProperty
Implements
CfnRecordSetGroup.ICidrRoutingConfigProperty
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 CfnRecordSetGroup.CidrRoutingConfigProperty : CfnRecordSetGroup.ICidrRoutingConfigProperty
Syntax (vb)
Public Class CfnRecordSetGroup.CidrRoutingConfigProperty Implements CfnRecordSetGroup.ICidrRoutingConfigProperty
Remarks

A LocationName with an asterisk “*” can be used to create a default CIDR record. CollectionId is still required for default record.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordsetgroup-cidrroutingconfig.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 cidrRoutingConfigProperty = new CidrRoutingConfigProperty {
                 CollectionId = "collectionId",
                 LocationName = "locationName"
             };

Synopsis

Constructors

CidrRoutingConfigProperty()

The object that is specified in resource record set object when you are linking a resource record set to a CIDR location.

Properties

CollectionId

The CIDR collection ID.

LocationName

The CIDR collection location name.

Constructors

CidrRoutingConfigProperty()

The object that is specified in resource record set object when you are linking a resource record set to a CIDR location.

public CidrRoutingConfigProperty()
Remarks

A LocationName with an asterisk “*” can be used to create a default CIDR record. CollectionId is still required for default record.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordsetgroup-cidrroutingconfig.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 cidrRoutingConfigProperty = new CidrRoutingConfigProperty {
                 CollectionId = "collectionId",
                 LocationName = "locationName"
             };

Properties

CollectionId

The CIDR collection ID.

public string CollectionId { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordsetgroup-cidrroutingconfig.html#cfn-route53-recordsetgroup-cidrroutingconfig-collectionid

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-recordsetgroup-cidrroutingconfig.html#cfn-route53-recordsetgroup-cidrroutingconfig-locationname

Implements

CfnRecordSetGroup.ICidrRoutingConfigProperty
Back to top Generated by DocFX