List Tracker Consumers
locationservice_list_tracker_consumers | R Documentation |
Lists geofence collections currently associated to the given tracker resource¶
Description¶
Lists geofence collections currently associated to the given tracker resource.
Usage¶
locationservice_list_tracker_consumers(TrackerName, MaxResults,
NextToken)
Arguments¶
TrackerName |
[required] The tracker resource whose associated geofence collections you want to list. |
MaxResults |
An optional limit for the number of resources returned in a single call. Default value: |
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: |
Value¶
A list with the following syntax:
list(
ConsumerArns = list(
"string"
),
NextToken = "string"
)
Request syntax¶
svc$list_tracker_consumers(
TrackerName = "string",
MaxResults = 123,
NextToken = "string"
)