Interface CfnRecordSetGroup.CidrRoutingConfigProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnRecordSetGroup.CidrRoutingConfigProperty.Jsii$Proxy
Enclosing class:
CfnRecordSetGroup

@Stability(Stable) public static interface CfnRecordSetGroup.CidrRoutingConfigProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.route53.*;
 CidrRoutingConfigProperty cidrRoutingConfigProperty = CidrRoutingConfigProperty.builder()
         .collectionId("collectionId")
         .locationName("locationName")
         .build();
 

See Also: