AWSRekognitionListFacesRequest
Objective-C
@interface AWSRekognitionListFacesRequest
Swift
class AWSRekognitionListFacesRequest
-
ID of the collection from which to list the faces.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable collectionId;
Swift
var collectionId: String? { get set }
-
An array of face IDs to filter results with when listing faces in a collection.
Declaration
Objective-C
@property (nonatomic, strong) NSArray<NSString *> *_Nullable faceIds;
Swift
var faceIds: [String]? { get set }
-
Maximum number of faces to return.
Declaration
Objective-C
@property (nonatomic, strong) NSNumber *_Nullable maxResults;
Swift
var maxResults: NSNumber? { get set }
-
If the previous response was incomplete (because there is more data to retrieve), Amazon Rekognition returns a pagination token in the response. You can use this pagination token to retrieve the next set of faces.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable nextToken;
Swift
var nextToken: String? { get set }
-
An array of user IDs to filter results with when listing faces in a collection.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable userId;
Swift
var userId: String? { get set }