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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnRecordSetGroup.CidrRoutingConfigProperty
static final class
An implementation forCfnRecordSetGroup.CidrRoutingConfigProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The CIDR collection ID.The CIDR collection location name.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCollectionId
The CIDR collection ID. -
getLocationName
The CIDR collection location name. -
builder
-