Interface CfnRecordSet.GeoProximityLocationProperty

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

@Stability(Stable) public static interface CfnRecordSet.GeoProximityLocationProperty extends software.amazon.jsii.JsiiSerializable
(Resource record sets only): A complex type that lets you specify where your resources are located.

Only one of LocalZoneGroup , Coordinates , or AWS Region is allowed per request at a time.

For more information about geoproximity routing, see Geoproximity routing in the Amazon Route 53 Developer Guide .

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.*;
 GeoProximityLocationProperty geoProximityLocationProperty = GeoProximityLocationProperty.builder()
         .awsRegion("awsRegion")
         .bias(123)
         .coordinates(CoordinatesProperty.builder()
                 .latitude("latitude")
                 .longitude("longitude")
                 .build())
         .localZoneGroup("localZoneGroup")
         .build();
 

See Also: