Interface CfnRecordSet.CoordinatesProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnRecordSet.CoordinatesProperty.Jsii$Proxy
- Enclosing class:
CfnRecordSet
@Stability(Stable)
public static interface CfnRecordSet.CoordinatesProperty
extends software.amazon.jsii.JsiiSerializable
A complex type that lists the coordinates for a geoproximity resource 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.*;
CoordinatesProperty coordinatesProperty = CoordinatesProperty.builder()
.latitude("latitude")
.longitude("longitude")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnRecordSet.CoordinatesPropertystatic final classAn implementation forCfnRecordSet.CoordinatesProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()Specifies a coordinate of the north–south position of a geographic point on the surface of the Earth (-90 - 90).Specifies a coordinate of the east–west position of a geographic point on the surface of the Earth (-180 - 180).Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getLatitude
Specifies a coordinate of the north–south position of a geographic point on the surface of the Earth (-90 - 90).- See Also:
-
getLongitude
Specifies a coordinate of the east–west position of a geographic point on the surface of the Earth (-180 - 180).- See Also:
-
builder
-