Delete Faces
rekognition_delete_faces | R Documentation |
Deletes faces from a collection¶
Description¶
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.
Usage¶
Arguments¶
CollectionId
[required] Collection from which to remove the specific faces.
FaceIds
[required] An array of face IDs to delete.
Value¶
A list with the following syntax:
list(
DeletedFaces = list(
"string"
),
UnsuccessfulFaceDeletions = list(
list(
FaceId = "string",
UserId = "string",
Reasons = list(
"ASSOCIATED_TO_AN_EXISTING_USER"|"FACE_NOT_FOUND"
)
)
)
)