interface CoordinatesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Route53.CfnRecordSetGroupPropsMixin.CoordinatesProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsroute53#CfnRecordSetGroupPropsMixin_CoordinatesProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.route53.CfnRecordSetGroupPropsMixin.CoordinatesProperty |
Python | aws_cdk.cfn_property_mixins.aws_route53.CfnRecordSetGroupPropsMixin.CoordinatesProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_route53 » 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 { aws_route53 as route53 } from '@aws-cdk/cfn-property-mixins';
const coordinatesProperty: route53.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