AWSRekognitionDisassociateFacesRequest
Objective-C
@interface AWSRekognitionDisassociateFacesRequest
Swift
class AWSRekognitionDisassociateFacesRequest
-
Idempotent token used to identify the request to
DisassociateFaces
. If you use the same token with multipleDisassociateFaces
requests, 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 face IDs to disassociate from the UserID.
Declaration
Objective-C
@property (nonatomic, strong) NSArray<NSString *> *_Nullable faceIds;
Swift
var faceIds: [String]? { get set }
-
ID for the existing UserID.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable userId;
Swift
var userId: String? { get set }