Skip to content

List Device Positions

locationservice_list_device_positions R Documentation

A batch request to retrieve all device positions

Description

A batch request to retrieve all device positions.

Usage

locationservice_list_device_positions(TrackerName, MaxResults,
  NextToken, FilterGeometry)

Arguments

TrackerName

[required] The tracker resource containing the requested devices.

MaxResults

An optional limit for the number of entries returned in a single call.

Default value: 100

NextToken

The pagination token specifying which page of results to return in the response. If no token is provided, the default page is the first page.

Default value: null

FilterGeometry

The geometry used to filter device positions.

Value

A list with the following syntax:

list(
  Entries = list(
    list(
      DeviceId = "string",
      SampleTime = as.POSIXct(
        "2015-01-01"
      ),
      Position = list(
        123.0
      ),
      Accuracy = list(
        Horizontal = 123.0
      ),
      PositionProperties = list(
        "string"
      )
    )
  ),
  NextToken = "string"
)

Request syntax

svc$list_device_positions(
  TrackerName = "string",
  MaxResults = 123,
  NextToken = "string",
  FilterGeometry = list(
    Polygon = list(
      list(
        list(
          123.0
        )
      )
    )
  )
)