interface CoordinatesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Pinpoint.Mixins.CfnSegmentPropsMixin.CoordinatesProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awspinpoint/mixins#CfnSegmentPropsMixin_CoordinatesProperty |
Java | software.amazon.awscdk.mixins.preview.services.pinpoint.mixins.CfnSegmentPropsMixin.CoordinatesProperty |
Python | aws_cdk.mixins_preview.aws_pinpoint.mixins.CfnSegmentPropsMixin.CoordinatesProperty |
TypeScript | @aws-cdk/mixins-preview » aws_pinpoint » mixins » CfnSegmentPropsMixin » CoordinatesProperty |
Specifies the GPS coordinates of a 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 coordinatesProperty: pinpoint_mixins.CfnSegmentPropsMixin.CoordinatesProperty = {
latitude: 123,
longitude: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| latitude? | number | The latitude coordinate of the location. |
| longitude? | number | The longitude coordinate of the location. |
latitude?
Type:
number
(optional)
The latitude coordinate of the location.
longitude?
Type:
number
(optional)
The longitude coordinate of the location.

.NET
Go
Java
Python
TypeScript