Class CfnSegment.CoordinatesProperty
Specifies the GPS coordinates of a location.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.Pinpoint
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnSegment.CoordinatesProperty : CfnSegment.ICoordinatesProperty
Syntax (vb)
Public Class CfnSegment.CoordinatesProperty Implements CfnSegment.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.Pinpoint;
var coordinatesProperty = new CoordinatesProperty {
Latitude = 123,
Longitude = 123
};
Synopsis
Constructors
| CoordinatesProperty() | Specifies the GPS coordinates of a location. |
Properties
| Latitude | The latitude coordinate of the location. |
| Longitude | The longitude coordinate of the location. |
Constructors
CoordinatesProperty()
Specifies the GPS coordinates of a location.
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.Pinpoint;
var coordinatesProperty = new CoordinatesProperty {
Latitude = 123,
Longitude = 123
};
Properties
Latitude
The latitude coordinate of the location.
public double Latitude { get; set; }
Property Value
Remarks
Longitude
The longitude coordinate of the location.
public double Longitude { get; set; }