Show / Hide Table of Contents

Class CfnSegment.GPSPointProperty

Specifies the GPS coordinates of the endpoint location.

Inheritance
System.Object
CfnSegment.GPSPointProperty
Implements
CfnSegment.IGPSPointProperty
Namespace: Amazon.CDK.AWS.Pinpoint
Assembly: Amazon.CDK.AWS.Pinpoint.dll
Syntax (csharp)
public class GPSPointProperty : Object, CfnSegment.IGPSPointProperty
Syntax (vb)
Public Class GPSPointProperty
    Inherits Object
    Implements CfnSegment.IGPSPointProperty
Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-segment-segmentdimensions-location-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

Constructors

GPSPointProperty()

Properties

Coordinates

The GPS coordinates to measure distance from.

RangeInKilometers

The range, in kilometers, from the GPS coordinates.

Constructors

GPSPointProperty()

public GPSPointProperty()

Properties

Coordinates

The GPS coordinates to measure distance from.

public object Coordinates { get; set; }
Property Value

System.Object

Remarks

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

RangeInKilometers

The range, in kilometers, from the GPS coordinates.

public double RangeInKilometers { get; set; }
Property Value

System.Double

Remarks

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

Implements

CfnSegment.IGPSPointProperty
Back to top Generated by DocFX