AWSTextractGetDocumentTextDetectionResponse
Objective-C
@interface AWSTextractGetDocumentTextDetectionResponse
Swift
class AWSTextractGetDocumentTextDetectionResponse
-
The results of the text-detection operation.
Declaration
Objective-C
@property (nonatomic, strong) NSArray<AWSTextractBlock *> *_Nullable blocks;
Swift
var blocks: [AWSTextractBlock]? { get set }
-
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable detectDocumentTextModelVersion;
Swift
var detectDocumentTextModelVersion: String? { get set }
-
Information about a document that Amazon Textract processed.
DocumentMetadata
is returned in every page of paginated responses from an Amazon Textract video operation.Declaration
Objective-C
@property (nonatomic, strong) AWSTextractDocumentMetadata *_Nullable documentMetadata;
Swift
var documentMetadata: AWSTextractDocumentMetadata? { get set }
-
The current status of the text detection job.
Declaration
Objective-C
@property (nonatomic) AWSTextractJobStatus jobStatus;
Swift
var jobStatus: AWSTextractJobStatus { get set }
-
If the response is truncated, Amazon Textract returns this token. You can use this token in the subsequent request to retrieve the next set of text-detection results.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable nextToken;
Swift
var nextToken: String? { get set }
-
Returns if the detection job could not be completed. Contains explanation for what error occured.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable statusMessage;
Swift
var statusMessage: String? { get set }
-
A list of warnings that occurred during the text-detection operation for the document.
Declaration
Objective-C
@property (nonatomic, strong) NSArray<AWSTextractWarning *> *_Nullable warnings;
Swift
var warnings: [AWSTextractWarning]? { get set }