aws-cdk-lib.aws_pinpoint.CfnSegment.GPSPointProperty

interface GPSPointProperty

LanguageType name
.NETAmazon.CDK.AWS.Pinpoint.CfnSegment.GPSPointProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awspinpoint#CfnSegment_GPSPointProperty
Javasoftware.amazon.awscdk.services.pinpoint.CfnSegment.GPSPointProperty
Pythonaws_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

NameTypeDescription
coordinatesIResolvable | CoordinatesPropertyThe GPS coordinates to measure distance from.
rangeInKilometersnumberThe range, in kilometers, from the GPS coordinates.

coordinates

Type: IResolvable | CoordinatesProperty

The GPS coordinates to measure distance from.


rangeInKilometers

Type: number

The range, in kilometers, from the GPS coordinates.