interface GPSPointProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Pinpoint.CfnSegmentPropsMixin.GPSPointProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awspinpoint#CfnSegmentPropsMixin_GPSPointProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.pinpoint.CfnSegmentPropsMixin.GPSPointProperty |
Python | aws_cdk.cfn_property_mixins.aws_pinpoint.CfnSegmentPropsMixin.GPSPointProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_pinpoint » 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 { aws_pinpoint as pinpoint } from '@aws-cdk/cfn-property-mixins';
const gPSPointProperty: pinpoint.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