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