Tutorial: Get tracker details with Amazon Location - Amazon Location Service

Tutorial: Get tracker details with Amazon Location

You can get details about any tracker in your AWS account by using the Amazon Location console, the AWS CLI, or the Amazon Location APIs.

Console

To view tracker details by using the Amazon Location console

  1. Open the Amazon Location console at https://console.aws.amazon.com/location/.

  2. Choose Trackers from the left navigation.

  3. Under My trackers, select the name link of the target tracker.

  4. View the tracker details under Information.

API

Use the DescribeTracker operation from the Amazon Location Tracker APIs.

The following example is an API request to get the tracker details for ExampleTracker.

GET /tracking/v0/trackers/ExampleTracker

The following is an example response for DescribeTracker:

{ "CreateTime": 2020-10-02T19:09:07.327Z, "Description": "string", "EventBridgeEnabled": false, "KmsKeyId": "1234abcd-12ab-34cd-56ef-1234567890ab", "PositionFiltering": "TimeBased", "Tags": { "Tag1" : "Value1" }, "TrackerArn": "arn:aws:geo:us-west-2:123456789012:tracker/ExampleTracker", "TrackerName": "ExampleTracker", "UpdateTime": 2020-10-02T19:10:07.327Z }
CLI

Use the describe-tracker command.

The following example is an AWS CLI command to get tracker details for ExampleTracker.

aws location describe-tracker \ --tracker-name "ExampleTracker"