Deletes faces from a collection
Deletes faces from a collection. You specify a collection ID and an array of face IDs to remove from the collection.
This operation requires permissions to perform the
rekognition:DeleteFaces
action.
rekognition_delete_faces(CollectionId, FaceIds)
CollectionId |
[required] Collection from which to remove the specific faces. |
FaceIds |
[required] An array of face IDs to delete. |
A list with the following syntax:
list( DeletedFaces = list( "string" ) )
svc$delete_faces( CollectionId = "string", FaceIds = list( "string" ) )
## Not run: # This operation deletes one or more faces from a Rekognition collection. svc$delete_faces( CollectionId = "myphotos", FaceIds = list( "ff43d742-0c13-5d16-a3e8-03d3f58e980b" ) ) ## End(Not run)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.