listUsers
Returns metadata of the User such as UserID
in the specified collection. Anonymous User (to reserve faces without any identity) is not returned as part of this request. The results are sorted by system generated primary key ID. If the response is truncated, NextToken
is returned in the response that can be used in the subsequent request to retrieve the next set of identities.
Samples
fun main() {
//sampleStart
// Returns metadata of the User such as UserID in the specified collection.
val resp = rekognitionClient.listUsers {
collectionId = "MyCollection"
}
//sampleEnd
}