Amazon Location Service · Schema
Tracker
An Amazon Location Service tracker resource for tracking device positions.
GeocodingGeofencingLocationMapsRouting
Properties
| Name | Type | Description |
|---|---|---|
| TrackerName | string | The name of the tracker resource. |
| TrackerArn | string | The Amazon Resource Name (ARN) for the tracker. |
| Description | string | The optional description for the tracker resource. |
| PositionFiltering | string | The position filtering method of the tracker resource. |
| CreateTime | string | The timestamp for when the tracker resource was created. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-location-service/refs/heads/main/json-schema/amazon-location-service-tracker-schema.json",
"title": "Tracker",
"description": "An Amazon Location Service tracker resource for tracking device positions.",
"type": "object",
"properties": {
"TrackerName": {
"type": "string",
"description": "The name of the tracker resource.",
"example": "fleet-tracker"
},
"TrackerArn": {
"type": "string",
"description": "The Amazon Resource Name (ARN) for the tracker."
},
"Description": {
"type": "string",
"description": "The optional description for the tracker resource."
},
"PositionFiltering": {
"type": "string",
"description": "The position filtering method of the tracker resource.",
"example": "TimeBased",
"enum": [
"TimeBased",
"DistanceBased",
"AccuracyBased"
]
},
"CreateTime": {
"type": "string",
"description": "The timestamp for when the tracker resource was created.",
"format": "date-time"
}
}
}