AWSRekognitionSearchFacesResponse

Objective-C

@interface AWSRekognitionSearchFacesResponse

Swift

class AWSRekognitionSearchFacesResponse
  • An array of faces that matched the input face, along with the confidence in the match.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSArray<AWSRekognitionFaceMatch *> *_Nullable faceMatches;

    Swift

    var faceMatches: [AWSRekognitionFaceMatch]? { get set }
  • Version number of the face detection model associated with the input collection (CollectionId).

    Declaration

    Objective-C

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

    Swift

    var faceModelVersion: String? { get set }
  • ID of the face that was searched for matches in a collection.

    Declaration

    Objective-C

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

    Swift

    var searchedFaceId: String? { get set }