interface CidrRoutingConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Route53.CfnRecordSetPropsMixin.CidrRoutingConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsroute53#CfnRecordSetPropsMixin_CidrRoutingConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.route53.CfnRecordSetPropsMixin.CidrRoutingConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_route53.CfnRecordSetPropsMixin.CidrRoutingConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_route53 » CfnRecordSetPropsMixin » 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/cfn-property-mixins';
const cidrRoutingConfigProperty: route53.CfnRecordSetPropsMixin.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
(optional)
The CIDR collection ID.
locationName?
Type:
string
(optional)
The CIDR collection location name.

.NET
Go
Java
Python
TypeScript