Show / Hide Table of Contents

Interface CfnRecordSet.ICidrRoutingConfigProperty

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

Namespace: Amazon.CDK.AWS.Route53
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnRecordSet.ICidrRoutingConfigProperty
Syntax (vb)
Public Interface CfnRecordSet.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-recordset-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

Properties

CollectionId

The CIDR collection ID.

LocationName

The CIDR collection location name.

Properties

CollectionId

The CIDR collection ID.

string CollectionId { get; }
Property Value

string

Remarks

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

LocationName

The CIDR collection location name.

string LocationName { get; }
Property Value

string

Remarks

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

Back to top Generated by DocFX