interface CidrRoutingConfigProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.Route53.CfnRecordSet.CidrRoutingConfigProperty |
Java | software.amazon.awscdk.services.route53.CfnRecordSet.CidrRoutingConfigProperty |
Python | aws_cdk.aws_route53.CfnRecordSet.CidrRoutingConfigProperty |
TypeScript | @aws-cdk/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 * as route53 from '@aws-cdk/aws-route53';
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.