Batch Delete Geofence
locationservice_batch_delete_geofence | R Documentation |
Deletes a batch of geofences from a geofence collection¶
Description¶
Deletes a batch of geofences from a geofence collection.
This operation deletes the resource permanently.
Usage¶
locationservice_batch_delete_geofence(CollectionName, GeofenceIds)
Arguments¶
CollectionName |
[required] The geofence collection storing the geofences to be deleted. |
GeofenceIds |
[required] The batch of geofences to be deleted. |
Value¶
A list with the following syntax:
list(
Errors = list(
list(
GeofenceId = "string",
Error = list(
Code = "AccessDeniedError"|"ConflictError"|"InternalServerError"|"ResourceNotFoundError"|"ThrottlingError"|"ValidationError",
Message = "string"
)
)
)
)
Request syntax¶
svc$batch_delete_geofence(
CollectionName = "string",
GeofenceIds = list(
"string"
)
)