AWSComprehendBatchDetectEntitiesResponse
Objective-C
@interface AWSComprehendBatchDetectEntitiesResponse
Swift
class AWSComprehendBatchDetectEntitiesResponse
-
A list containing one object for each document that contained an error. The results are sorted in ascending order by the
Index
field and match the order of the documents in the input list. If there are no errors in the batch, theErrorList
is empty.Declaration
Objective-C
@property (nonatomic, strong) NSArray<AWSComprehendBatchItemError *> *_Nullable errorList;
Swift
var errorList: [AWSComprehendBatchItemError]? { get set }
-
A list of objects containing the results of the operation. The results are sorted in ascending order by the
Index
field and match the order of the documents in the input list. If all of the documents contain an error, theResultList
is empty.Declaration
Objective-C
@property (nonatomic, strong) NSArray<AWSComprehendBatchDetectEntitiesItemResult *> *_Nullable resultList;
Swift
var resultList: [AWSComprehendBatchDetectEntitiesItemResult]? { get set }