Show / Hide Table of Contents

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 CfnSegment.IGPSPointProperty
Syntax (vb)
Public Interface CfnSegment.IGPSPointProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-segment-gpspoint.html

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

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-segment-gpspoint.html#cfn-pinpoint-segment-gpspoint-coordinates

RangeInKilometers

The range, in kilometers, from the GPS coordinates.

double RangeInKilometers { get; }
Property Value

double

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-segment-gpspoint.html#cfn-pinpoint-segment-gpspoint-rangeinkilometers

Back to top Generated by DocFX