interface GPSPointProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Pinpoint.CfnSegment.GPSPointProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awspinpoint#CfnSegment_GPSPointProperty |
Java | software.amazon.awscdk.services.pinpoint.CfnSegment.GPSPointProperty |
Python | aws_cdk.aws_pinpoint.CfnSegment.GPSPointProperty |
TypeScript | aws-cdk-lib » 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 { aws_pinpoint as pinpoint } from 'aws-cdk-lib';
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
Go
Java
Python
TypeScript