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.
Implements
Inherited Members
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.
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.
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
Remarks
LocationName
The CIDR collection location name.
public string LocationName { get; set; }