Interface CfnRecordSet.CidrRoutingConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnRecordSet.CidrRoutingConfigProperty.Jsii$Proxy
- Enclosing class:
CfnRecordSet
@Stability(Stable)
public static interface CfnRecordSet.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:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnRecordSet.CidrRoutingConfigProperty
static final class
An implementation forCfnRecordSet.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.- See Also:
-
getLocationName
The CIDR collection location name.- See Also:
-
builder
-