interface GPSPointProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Pinpoint.CfnSegment.GPSPointProperty |
Java | software.amazon.awscdk.services.pinpoint.CfnSegment.GPSPointProperty |
Python | aws_cdk.aws_pinpoint.CfnSegment.GPSPointProperty |
TypeScript | @aws-cdk/aws-pinpoint » CfnSegment » GPSPointProperty |
Specifies the GPS coordinates of the endpoint location.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as pinpoint from '@aws-cdk/aws-pinpoint';
const gPSPointProperty: pinpoint.CfnSegment.GPSPointProperty = {
coordinates: {
latitude: 123,
longitude: 123,
},
rangeInKilometers: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| coordinates | IResolvable | Coordinates | The GPS coordinates to measure distance from. |
| range | number | The range, in kilometers, from the GPS coordinates. |
coordinates
Type:
IResolvable | Coordinates
The GPS coordinates to measure distance from.
rangeInKilometers
Type:
number
The range, in kilometers, from the GPS coordinates.

.NET
Java
Python
TypeScript