AWSRekognitionAssociateFacesResponse
Objective-C
@interface AWSRekognitionAssociateFacesResponse
Swift
class AWSRekognitionAssociateFacesResponse
-
An array of AssociatedFace objects containing FaceIDs that have been successfully associated with the UserID. Returned if the AssociateFaces action is successful.
Declaration
Objective-C
@property (nonatomic, strong) NSArray<AWSRekognitionAssociatedFace *> *_Nullable associatedFaces;
Swift
var associatedFaces: [AWSRekognitionAssociatedFace]? { get set }
-
An array of UnsuccessfulAssociation objects containing FaceIDs that are not successfully associated along with the reasons. Returned if the AssociateFaces action is successful.
Declaration
Objective-C
@property (nonatomic, strong) NSArray<AWSRekognitionUnsuccessfulFaceAssociation *> *_Nullable unsuccessfulFaceAssociations;
Swift
var unsuccessfulFaceAssociations: [AWSRekognitionUnsuccessfulFaceAssociation]? { get set }
-
The status of an update made to a UserID. Reflects if the UserID has been updated for every requested change.
Declaration
Objective-C
@property (nonatomic) AWSRekognitionUserStatus userStatus;
Swift
var userStatus: AWSRekognitionUserStatus { get set }