interface CoordinatesProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.Route53.CfnRecordSet.CoordinatesProperty | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsroute53#CfnRecordSet_CoordinatesProperty | 
|  Java | software.amazon.awscdk.services.route53.CfnRecordSet.CoordinatesProperty | 
|  Python | aws_cdk.aws_route53.CfnRecordSet.CoordinatesProperty | 
|  TypeScript | aws-cdk-lib»aws_route53»CfnRecordSet»CoordinatesProperty | 
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 { aws_route53 as route53 } from 'aws-cdk-lib';
const coordinatesProperty: route53.CfnRecordSet.CoordinatesProperty = {
  latitude: 'latitude',
  longitude: 'longitude',
};
Properties
| Name | Type | Description | 
|---|---|---|
| latitude | string | Specifies a coordinate of the north–south position of a geographic point on the surface of the Earth (-90 - 90). | 
| longitude | string | Specifies a coordinate of the east–west position of a geographic point on the surface of the Earth (-180 - 180). | 
latitude
Type:
string
Specifies a coordinate of the north–south position of a geographic point on the surface of the Earth (-90 - 90).
longitude
Type:
string
Specifies a coordinate of the east–west position of a geographic point on the surface of the Earth (-180 - 180).
