Interface CfnSegment.IGPSPointProperty
Specifies the GPS coordinates of the endpoint location.
Namespace: Amazon.CDK.AWS.Pinpoint
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IGPSPointProperty
Syntax (vb)
Public Interface IGPSPointProperty
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 gPSPointProperty = new GPSPointProperty {
Coordinates = new CoordinatesProperty {
Latitude = 123,
Longitude = 123
},
RangeInKilometers = 123
};
Synopsis
Properties
Coordinates | The GPS coordinates to measure distance from. |
RangeInKilometers | The range, in kilometers, from the GPS coordinates. |
Properties
Coordinates
The GPS coordinates to measure distance from.
object Coordinates { get; }
Property Value
System.Object
Remarks
RangeInKilometers
The range, in kilometers, from the GPS coordinates.
double RangeInKilometers { get; }
Property Value
System.Double