AWSRekognitionSearchUsersResponse
Objective-C
@interface AWSRekognitionSearchUsersResponse
Swift
class AWSRekognitionSearchUsersResponse
-
Version number of the face detection model associated with the input CollectionId.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable faceModelVersion;
Swift
var faceModelVersion: String? { get set }
-
Contains the ID of a face that was used to search for matches in a collection.
Declaration
Objective-C
@property (nonatomic, strong) AWSRekognitionSearchedFace *_Nullable searchedFace;
Swift
var searchedFace: AWSRekognitionSearchedFace? { get set }
-
Contains the ID of the UserID that was used to search for matches in a collection.
Declaration
Objective-C
@property (nonatomic, strong) AWSRekognitionSearchedUser *_Nullable searchedUser;
Swift
var searchedUser: AWSRekognitionSearchedUser? { get set }
-
An array of UserMatch objects that matched the input face along with the confidence in the match. Array will be empty if there are no matches.
Declaration
Objective-C
@property (nonatomic, strong) NSArray<AWSRekognitionUserMatch *> *_Nullable userMatches;
Swift
var userMatches: [AWSRekognitionUserMatch]? { get set }