Show / Hide Table of Contents

Class CfnSegment.CoordinatesProperty

Specifies the GPS coordinates of a location.

Inheritance
object
CfnSegment.CoordinatesProperty
Implements
CfnSegment.ICoordinatesProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-segment-coordinates.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 coordinatesProperty = new CoordinatesProperty {
                 Latitude = 123,
                 Longitude = 123
             };

Properties

Latitude

The latitude coordinate of the location.

public double Latitude { get; set; }
Property Value

double

Remarks

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

Longitude

The longitude coordinate of the location.

public double Longitude { get; set; }
Property Value

double

Remarks

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

Implements

CfnSegment.ICoordinatesProperty
Back to top Generated by DocFX