AWSRekognitionListCollectionsResponse
Objective-C
@interface AWSRekognitionListCollectionsResponse
Swift
class AWSRekognitionListCollectionsResponse
-
An array of collection IDs.
Declaration
Objective-C
@property (nonatomic, strong) NSArray<NSString *> *_Nullable collectionIds;
Swift
var collectionIds: [String]? { get set }
-
Version numbers of the face detection models associated with the collections in the array
CollectionIds
. For example, the value ofFaceModelVersions[2]
is the version number for the face detection model used by the collection inCollectionId[2]
.Declaration
Objective-C
@property (nonatomic, strong) NSArray<NSString *> *_Nullable faceModelVersions;
Swift
var faceModelVersions: [String]? { get set }
-
If the result is truncated, the response provides a
NextToken
that you can use in the subsequent request to fetch the next set of collection IDs.Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable nextToken;
Swift
var nextToken: String? { get set }