interface CoordinatesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Route53.Mixins.CfnRecordSetGroupPropsMixin.CoordinatesProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsroute53/mixins#CfnRecordSetGroupPropsMixin_CoordinatesProperty |
Java | software.amazon.awscdk.mixins.preview.services.route53.mixins.CfnRecordSetGroupPropsMixin.CoordinatesProperty |
Python | aws_cdk.mixins_preview.aws_route53.mixins.CfnRecordSetGroupPropsMixin.CoordinatesProperty |
TypeScript | @aws-cdk/mixins-preview » aws_route53 » mixins » CfnRecordSetGroupPropsMixin » 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 { mixins as route53_mixins } from '@aws-cdk/mixins-preview/aws-route53';
const coordinatesProperty: route53_mixins.CfnRecordSetGroupPropsMixin.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
(optional)
Specifies a coordinate of the north–south position of a geographic point on the surface of the Earth (-90 - 90).
longitude?
Type:
string
(optional)
Specifies a coordinate of the east–west position of a geographic point on the surface of the Earth (-180 - 180).

.NET
Go
Java
Python
TypeScript