interface CidrRoutingConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Route53.Mixins.CfnRecordSetGroupPropsMixin.CidrRoutingConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsroute53/mixins#CfnRecordSetGroupPropsMixin_CidrRoutingConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.route53.mixins.CfnRecordSetGroupPropsMixin.CidrRoutingConfigProperty |
Python | aws_cdk.mixins_preview.aws_route53.mixins.CfnRecordSetGroupPropsMixin.CidrRoutingConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_route53 » mixins » CfnRecordSetGroupPropsMixin » 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 { mixins as route53_mixins } from '@aws-cdk/mixins-preview/aws-route53';
const cidrRoutingConfigProperty: route53_mixins.CfnRecordSetGroupPropsMixin.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