Associates one or more faces with an existing UserID. Takes an array of FaceIds
. Each FaceId
that are present in the FaceIds
list is associated with the provided UserID. The maximum number of total FaceIds
per UserID is 100.
See https://www.paws-r-sdk.com/docs/rekognition_associate_faces/ for full documentation.
rekognition_associate_faces(
CollectionId,
UserId,
FaceIds,
UserMatchThreshold = NULL,
ClientRequestToken = NULL
)
[required] The ID of an existing collection containing the UserID.
[required] The ID for the existing UserID.
[required] An array of FaceIDs to associate with the UserID.
An optional value specifying the minimum confidence in the UserID match to return. The default value is 75.
Idempotent token used to identify the request to
associate_faces
. If you use the same
token with multiple associate_faces
requests, the same response is returned. Use ClientRequestToken to
prevent the same request from being processed more than once.