AWSRekognitionUnsuccessfulFaceAssociation

Objective-C

@interface AWSRekognitionUnsuccessfulFaceAssociation

Swift

class AWSRekognitionUnsuccessfulFaceAssociation

Contains metadata like FaceId, UserID, and Reasons, for a face that was unsuccessfully associated.

  • Match confidence with the UserID, provides information regarding if a face association was unsuccessful because it didn’t meet UserMatchThreshold.

    Declaration

    Objective-C

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

    Swift

    var confidence: NSNumber? { get set }
  • A unique identifier assigned to the face.

    Declaration

    Objective-C

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

    Swift

    var faceId: String? { get set }
  • The reason why the association was unsuccessful.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSArray<NSString *> *_Nullable reasons;

    Swift

    var reasons: [String]? { get set }
  • A provided ID for the UserID. Unique within the collection.

    Declaration

    Objective-C

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

    Swift

    var userId: String? { get set }