Class CfnRecordSetGroup.CoordinatesProperty
A complex type that lists the coordinates for a geoproximity resource record.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.Route53
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnRecordSetGroup.CoordinatesProperty : CfnRecordSetGroup.ICoordinatesProperty
Syntax (vb)
Public Class CfnRecordSetGroup.CoordinatesProperty Implements CfnRecordSetGroup.ICoordinatesProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Route53;
var coordinatesProperty = new CoordinatesProperty {
Latitude = "latitude",
Longitude = "longitude"
};
Synopsis
Constructors
| CoordinatesProperty() | A complex type that lists the coordinates for a geoproximity resource record. |
Properties
| Latitude | Specifies a coordinate of the north–south position of a geographic point on the surface of the Earth (-90 - 90). |
| Longitude | Specifies a coordinate of the east–west position of a geographic point on the surface of the Earth (-180 - 180). |
Constructors
CoordinatesProperty()
A complex type that lists the coordinates for a geoproximity resource record.
public CoordinatesProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Route53;
var coordinatesProperty = new CoordinatesProperty {
Latitude = "latitude",
Longitude = "longitude"
};
Properties
Latitude
Specifies a coordinate of the north–south position of a geographic point on the surface of the Earth (-90 - 90).
public string Latitude { get; set; }
Property Value
Remarks
Longitude
Specifies a coordinate of the east–west position of a geographic point on the surface of the Earth (-180 - 180).
public string Longitude { get; set; }