AWSRekognitionAssociateFacesRequest
Objective-C
@interface AWSRekognitionAssociateFacesRequest
Swift
class AWSRekognitionAssociateFacesRequest
-
Idempotent token used to identify the request to
AssociateFaces. If you use the same token with multipleAssociateFacesrequests, the same response is returned. Use ClientRequestToken to prevent the same request from being processed more than once.Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable clientRequestToken;Swift
var clientRequestToken: String? { get set } -
The ID of an existing collection containing the UserID.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable collectionId;Swift
var collectionId: String? { get set } -
An array of FaceIDs to associate with the UserID.
Declaration
Objective-C
@property (nonatomic, strong) NSArray<NSString *> *_Nullable faceIds;Swift
var faceIds: [String]? { get set } -
The ID for the existing UserID.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable userId;Swift
var userId: String? { get set } -
An optional value specifying the minimum confidence in the UserID match to return. The default value is 75.
Declaration
Objective-C
@property (nonatomic, strong) NSNumber *_Nullable userMatchThreshold;Swift
var userMatchThreshold: NSNumber? { get set }
View on GitHub
Install in Dash
AWSRekognitionAssociateFacesRequest Class Reference