AWSRekognitionSearchFacesRequest

Objective-C

@interface AWSRekognitionSearchFacesRequest

Swift

class AWSRekognitionSearchFacesRequest
  • ID of the collection the face belongs to.

    Declaration

    Objective-C

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

    Swift

    var collectionId: String? { get set }
  • ID of a face to find matches for in the collection.

    Declaration

    Objective-C

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

    Swift

    var faceId: String? { get set }
  • Optional value specifying the minimum confidence in the face match to return. For example, don’t return any matches where confidence in matches is less than 70%. The default value is 80%.

    Declaration

    Objective-C

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

    Swift

    var faceMatchThreshold: NSNumber? { get set }
  • Maximum number of faces to return. The operation returns the maximum number of faces with the highest confidence in the match.

    Declaration

    Objective-C

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

    Swift

    var maxFaces: NSNumber? { get set }