interface GPSPointProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Pinpoint.Mixins.CfnSegmentPropsMixin.GPSPointProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awspinpoint/mixins#CfnSegmentPropsMixin_GPSPointProperty |
Java | software.amazon.awscdk.mixins.preview.services.pinpoint.mixins.CfnSegmentPropsMixin.GPSPointProperty |
Python | aws_cdk.mixins_preview.aws_pinpoint.mixins.CfnSegmentPropsMixin.GPSPointProperty |
TypeScript | @aws-cdk/mixins-preview » aws_pinpoint » mixins » CfnSegmentPropsMixin » 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 { mixins as pinpoint_mixins } from '@aws-cdk/mixins-preview/aws-pinpoint';
const gPSPointProperty: pinpoint_mixins.CfnSegmentPropsMixin.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
(optional)
The GPS coordinates to measure distance from.
rangeInKilometers?
Type:
number
(optional)
The range, in kilometers, from the GPS coordinates.

.NET
Go
Java
Python
TypeScript