List Geofences
| locationservice_list_geofences | R Documentation |
Lists geofences stored in a given geofence collection¶
Description¶
Lists geofences stored in a given geofence collection.
Usage¶
Arguments¶
CollectionName[required] The name of the geofence collection storing the list of geofences.
NextTokenThe 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:
nullMaxResultsAn optional limit for the number of geofences returned in a single call.
Default value:
100
Value¶
A list with the following syntax:
list(
Entries = list(
list(
GeofenceId = "string",
Geometry = list(
Polygon = list(
list(
list(
123.0
)
)
),
Circle = list(
Center = list(
123.0
),
Radius = 123.0
),
Geobuf = raw
),
Status = "string",
CreateTime = as.POSIXct(
"2015-01-01"
),
UpdateTime = as.POSIXct(
"2015-01-01"
),
GeofenceProperties = list(
"string"
)
)
),
NextToken = "string"
)