interface CidrRoutingConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Route53.CfnRecordSet.CidrRoutingConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsroute53#CfnRecordSet_CidrRoutingConfigProperty |
Java | software.amazon.awscdk.services.route53.CfnRecordSet.CidrRoutingConfigProperty |
Python | aws_cdk.aws_route53.CfnRecordSet.CidrRoutingConfigProperty |
TypeScript | aws-cdk-lib » aws_route53 » CfnRecordSet » CidrRoutingConfigProperty |
The object that is specified in resource record set object when you are linking a resource record set to a CIDR location.
A LocationName with an asterisk “*” can be used to create a default CIDR record. CollectionId is still required for default record.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_route53 as route53 } from 'aws-cdk-lib';
const cidrRoutingConfigProperty: route53.CfnRecordSet.CidrRoutingConfigProperty = {
collectionId: 'collectionId',
locationName: 'locationName',
};
Properties
| Name | Type | Description |
|---|---|---|
| collection | string | The CIDR collection ID. |
| location | string | The CIDR collection location name. |
collectionId
Type:
string
The CIDR collection ID.
locationName
Type:
string
The CIDR collection location name.

.NET
Go
Java
Python
TypeScript