AWSTextractAnalyzeDocumentRequest

Objective-C

@interface AWSTextractAnalyzeDocumentRequest

Swift

class AWSTextractAnalyzeDocumentRequest
  • Specifies the adapter to be used when analyzing a document.

    Declaration

    Objective-C

    @property (nonatomic, strong) AWSTextractAdaptersConfig *_Nullable adaptersConfig;

    Swift

    var adaptersConfig: AWSTextractAdaptersConfig? { get set }
  • The input document as base64-encoded bytes or an Amazon S3 object. If you use the AWS CLI to call Amazon Textract operations, you can’t pass image bytes. The document must be an image in JPEG, PNG, PDF, or TIFF format.

    If you’re using an AWS SDK to call Amazon Textract, you might not need to base64-encode image bytes that are passed using the Bytes field.

    Declaration

    Objective-C

    @property (nonatomic, strong) AWSTextractDocument *_Nullable document;

    Swift

    var document: AWSTextractDocument? { get set }
  • A list of the types of analysis to perform. Add TABLES to the list to return information about the tables that are detected in the input document. Add FORMS to return detected form data. Add SIGNATURES to return the locations of detected signatures. Add LAYOUT to the list to return information about the layout of the document. All lines and words detected in the document are included in the response (including text that isn’t related to the value of FeatureTypes).

    Declaration

    Objective-C

    @property (nonatomic, strong) NSArray<NSString *> *_Nullable featureTypes;

    Swift

    var featureTypes: [String]? { get set }
  • Sets the configuration for the human in the loop workflow for analyzing documents.

    Declaration

    Objective-C

    @property (nonatomic, strong) AWSTextractHumanLoopConfig *_Nullable humanLoopConfig;

    Swift

    var humanLoopConfig: AWSTextractHumanLoopConfig? { get set }
  • Contains Queries and the alias for those Queries, as determined by the input.

    Declaration

    Objective-C

    @property (nonatomic, strong) AWSTextractQueriesConfig *_Nullable queriesConfig;

    Swift

    var queriesConfig: AWSTextractQueriesConfig? { get set }