AWSRekognitionSearchUsersRequest

Objective-C

@interface AWSRekognitionSearchUsersRequest

Swift

class AWSRekognitionSearchUsersRequest
  • The ID of an existing collection containing the UserID, used with a UserId or FaceId. If a FaceId is provided, UserId isn’t required to be present in the Collection.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable collectionId;

    Swift

    var collectionId: String? { get set }
  • ID for the existing face.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable faceId;

    Swift

    var faceId: String? { get set }
  • Maximum number of identities to return.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSNumber *_Nullable maxUsers;

    Swift

    var maxUsers: NSNumber? { get set }
  • ID for the existing User.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable userId;

    Swift

    var userId: String? { get set }
  • Optional value that specifies the minimum confidence in the matched UserID to return. Default value of 80.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSNumber *_Nullable userMatchThreshold;

    Swift

    var userMatchThreshold: NSNumber? { get set }