'2.0', 'service' => '
Amazon Textract detects and analyzes text in documents and converts it into machine-readable text. This is the API reference documentation for Amazon Textract.
', 'operations' => [ 'AnalyzeDocument' => 'Analyzes an input document for relationships between detected items.
The types of information returned are as follows:
Form data (key-value pairs). The related information is returned in two Block objects, each of type KEY_VALUE_SET
: a KEY Block
object and a VALUE Block
object. For example, Name: Ana Silva Carolina contains a key and value. Name: is the key. Ana Silva Carolina is the value.
Table and table cell data. A TABLE Block
object contains information about a detected table. A CELL Block
object is returned for each cell in a table.
Lines and words of text. A LINE Block
object contains one or more WORD Block
objects. All lines and words that are detected in the document are returned (including text that doesn\'t have a relationship with the value of FeatureTypes
).
Signatures. A SIGNATURE Block
object contains the location information of a signature in a document. If used in conjunction with forms or tables, a signature can be given a Key-Value pairing or be detected in the cell of a table.
Query. A QUERY Block object contains the query text, alias and link to the associated Query results block object.
Query Result. A QUERY_RESULT Block object contains the answer to the query and an ID that connects it to the query asked. This Block also contains a confidence score.
Selection elements such as check boxes and option buttons (radio buttons) can be detected in form data and in tables. A SELECTION_ELEMENT Block
object contains information about a selection element, including the selection status.
You can choose which type of analysis to perform by specifying the FeatureTypes
list.
The output is returned in a list of Block
objects.
AnalyzeDocument
is a synchronous operation. To analyze documents asynchronously, use StartDocumentAnalysis.
For more information, see Document Text Analysis.
', 'AnalyzeExpense' => ' AnalyzeExpense
synchronously analyzes an input document for financially related relationships between text.
Information is returned as ExpenseDocuments
and seperated as follows:
LineItemGroups
- A data set containing LineItems
which store information about the lines of text, such as an item purchased and its price on a receipt.
SummaryFields
- Contains all other information a receipt, such as header information or the vendors name.
Analyzes identity documents for relevant information. This information is extracted and returned as IdentityDocumentFields
, which records both the normalized field and value of the extracted text. Unlike other Amazon Textract operations, AnalyzeID
doesn\'t return any Geometry data.
Detects text in the input document. Amazon Textract can detect lines of text and the words that make up a line of text. The input document must be in one of the following image formats: JPEG, PNG, PDF, or TIFF. DetectDocumentText
returns the detected text in an array of Block objects.
Each document page has as an associated Block
of type PAGE. Each PAGE Block
object is the parent of LINE Block
objects that represent the lines of detected text on a page. A LINE Block
object is a parent for each word that makes up the line. Words are represented by Block
objects of type WORD.
DetectDocumentText
is a synchronous operation. To analyze documents asynchronously, use StartDocumentTextDetection.
For more information, see Document Text Detection.
', 'GetDocumentAnalysis' => 'Gets the results for an Amazon Textract asynchronous operation that analyzes text in a document.
You start asynchronous text analysis by calling StartDocumentAnalysis, which returns a job identifier (JobId
). When the text analysis operation finishes, Amazon Textract publishes a completion status to the Amazon Simple Notification Service (Amazon SNS) topic that\'s registered in the initial call to StartDocumentAnalysis
. To get the results of the text-detection operation, first check that the status value published to the Amazon SNS topic is SUCCEEDED
. If so, call GetDocumentAnalysis
, and pass the job identifier (JobId
) from the initial call to StartDocumentAnalysis
.
GetDocumentAnalysis
returns an array of Block objects. The following types of information are returned:
Form data (key-value pairs). The related information is returned in two Block objects, each of type KEY_VALUE_SET
: a KEY Block
object and a VALUE Block
object. For example, Name: Ana Silva Carolina contains a key and value. Name: is the key. Ana Silva Carolina is the value.
Table and table cell data. A TABLE Block
object contains information about a detected table. A CELL Block
object is returned for each cell in a table.
Lines and words of text. A LINE Block
object contains one or more WORD Block
objects. All lines and words that are detected in the document are returned (including text that doesn\'t have a relationship with the value of the StartDocumentAnalysis
FeatureTypes
input parameter).
Query. A QUERY Block object contains the query text, alias and link to the associated Query results block object.
Query Results. A QUERY_RESULT Block object contains the answer to the query and an ID that connects it to the query asked. This Block also contains a confidence score.
While processing a document with queries, look out for INVALID_REQUEST_PARAMETERS
output. This indicates that either the per page query limit has been exceeded or that the operation is trying to query a page in the document which doesn’t exist.
Selection elements such as check boxes and option buttons (radio buttons) can be detected in form data and in tables. A SELECTION_ELEMENT Block
object contains information about a selection element, including the selection status.
Use the MaxResults
parameter to limit the number of blocks that are returned. If there are more results than specified in MaxResults
, the value of NextToken
in the operation response contains a pagination token for getting the next set of results. To get the next page of results, call GetDocumentAnalysis
, and populate the NextToken
request parameter with the token value that\'s returned from the previous call to GetDocumentAnalysis
.
For more information, see Document Text Analysis.
', 'GetDocumentTextDetection' => 'Gets the results for an Amazon Textract asynchronous operation that detects text in a document. Amazon Textract can detect lines of text and the words that make up a line of text.
You start asynchronous text detection by calling StartDocumentTextDetection, which returns a job identifier (JobId
). When the text detection operation finishes, Amazon Textract publishes a completion status to the Amazon Simple Notification Service (Amazon SNS) topic that\'s registered in the initial call to StartDocumentTextDetection
. To get the results of the text-detection operation, first check that the status value published to the Amazon SNS topic is SUCCEEDED
. If so, call GetDocumentTextDetection
, and pass the job identifier (JobId
) from the initial call to StartDocumentTextDetection
.
GetDocumentTextDetection
returns an array of Block objects.
Each document page has as an associated Block
of type PAGE. Each PAGE Block
object is the parent of LINE Block
objects that represent the lines of detected text on a page. A LINE Block
object is a parent for each word that makes up the line. Words are represented by Block
objects of type WORD.
Use the MaxResults parameter to limit the number of blocks that are returned. If there are more results than specified in MaxResults
, the value of NextToken
in the operation response contains a pagination token for getting the next set of results. To get the next page of results, call GetDocumentTextDetection
, and populate the NextToken
request parameter with the token value that\'s returned from the previous call to GetDocumentTextDetection
.
For more information, see Document Text Detection.
', 'GetExpenseAnalysis' => 'Gets the results for an Amazon Textract asynchronous operation that analyzes invoices and receipts. Amazon Textract finds contact information, items purchased, and vendor name, from input invoices and receipts.
You start asynchronous invoice/receipt analysis by calling StartExpenseAnalysis, which returns a job identifier (JobId
). Upon completion of the invoice/receipt analysis, Amazon Textract publishes the completion status to the Amazon Simple Notification Service (Amazon SNS) topic. This topic must be registered in the initial call to StartExpenseAnalysis
. To get the results of the invoice/receipt analysis operation, first ensure that the status value published to the Amazon SNS topic is SUCCEEDED
. If so, call GetExpenseAnalysis
, and pass the job identifier (JobId
) from the initial call to StartExpenseAnalysis
.
Use the MaxResults parameter to limit the number of blocks that are returned. If there are more results than specified in MaxResults
, the value of NextToken
in the operation response contains a pagination token for getting the next set of results. To get the next page of results, call GetExpenseAnalysis
, and populate the NextToken
request parameter with the token value that\'s returned from the previous call to GetExpenseAnalysis
.
For more information, see Analyzing Invoices and Receipts.
', 'GetLendingAnalysis' => 'Gets the results for an Amazon Textract asynchronous operation that analyzes text in a lending document.
You start asynchronous text analysis by calling StartLendingAnalysis
, which returns a job identifier (JobId
). When the text analysis operation finishes, Amazon Textract publishes a completion status to the Amazon Simple Notification Service (Amazon SNS) topic that\'s registered in the initial call to StartLendingAnalysis
.
To get the results of the text analysis operation, first check that the status value published to the Amazon SNS topic is SUCCEEDED. If so, call GetLendingAnalysis, and pass the job identifier (JobId
) from the initial call to StartLendingAnalysis
.
Gets summarized results for the StartLendingAnalysis
operation, which analyzes text in a lending document. The returned summary consists of information about documents grouped together by a common document type. Information like detected signatures, page numbers, and split documents is returned with respect to the type of grouped document.
You start asynchronous text analysis by calling StartLendingAnalysis
, which returns a job identifier (JobId
). When the text analysis operation finishes, Amazon Textract publishes a completion status to the Amazon Simple Notification Service (Amazon SNS) topic that\'s registered in the initial call to StartLendingAnalysis
.
To get the results of the text analysis operation, first check that the status value published to the Amazon SNS topic is SUCCEEDED. If so, call GetLendingAnalysisSummary
, and pass the job identifier (JobId
) from the initial call to StartLendingAnalysis
.
Starts the asynchronous analysis of an input document for relationships between detected items such as key-value pairs, tables, and selection elements.
StartDocumentAnalysis
can analyze text in documents that are in JPEG, PNG, TIFF, and PDF format. The documents are stored in an Amazon S3 bucket. Use DocumentLocation to specify the bucket name and file name of the document.
StartDocumentAnalysis
returns a job identifier (JobId
) that you use to get the results of the operation. When text analysis is finished, Amazon Textract publishes a completion status to the Amazon Simple Notification Service (Amazon SNS) topic that you specify in NotificationChannel
. To get the results of the text analysis operation, first check that the status value published to the Amazon SNS topic is SUCCEEDED
. If so, call GetDocumentAnalysis, and pass the job identifier (JobId
) from the initial call to StartDocumentAnalysis
.
For more information, see Document Text Analysis.
', 'StartDocumentTextDetection' => 'Starts the asynchronous detection of text in a document. Amazon Textract can detect lines of text and the words that make up a line of text.
StartDocumentTextDetection
can analyze text in documents that are in JPEG, PNG, TIFF, and PDF format. The documents are stored in an Amazon S3 bucket. Use DocumentLocation to specify the bucket name and file name of the document.
StartTextDetection
returns a job identifier (JobId
) that you use to get the results of the operation. When text detection is finished, Amazon Textract publishes a completion status to the Amazon Simple Notification Service (Amazon SNS) topic that you specify in NotificationChannel
. To get the results of the text detection operation, first check that the status value published to the Amazon SNS topic is SUCCEEDED
. If so, call GetDocumentTextDetection, and pass the job identifier (JobId
) from the initial call to StartDocumentTextDetection
.
For more information, see Document Text Detection.
', 'StartExpenseAnalysis' => 'Starts the asynchronous analysis of invoices or receipts for data like contact information, items purchased, and vendor names.
StartExpenseAnalysis
can analyze text in documents that are in JPEG, PNG, and PDF format. The documents must be stored in an Amazon S3 bucket. Use the DocumentLocation parameter to specify the name of your S3 bucket and the name of the document in that bucket.
StartExpenseAnalysis
returns a job identifier (JobId
) that you will provide to GetExpenseAnalysis
to retrieve the results of the operation. When the analysis of the input invoices/receipts is finished, Amazon Textract publishes a completion status to the Amazon Simple Notification Service (Amazon SNS) topic that you provide to the NotificationChannel
. To obtain the results of the invoice and receipt analysis operation, ensure that the status value published to the Amazon SNS topic is SUCCEEDED
. If so, call GetExpenseAnalysis, and pass the job identifier (JobId
) that was returned by your call to StartExpenseAnalysis
.
For more information, see Analyzing Invoices and Receipts.
', 'StartLendingAnalysis' => 'Starts the classification and analysis of an input document. StartLendingAnalysis
initiates the classification and analysis of a packet of lending documents. StartLendingAnalysis
operates on a document file located in an Amazon S3 bucket.
StartLendingAnalysis
can analyze text in documents that are in one of the following formats: JPEG, PNG, TIFF, PDF. Use DocumentLocation
to specify the bucket name and the file name of the document.
StartLendingAnalysis
returns a job identifier (JobId
) that you use to get the results of the operation. When the text analysis is finished, Amazon Textract publishes a completion status to the Amazon Simple Notification Service (Amazon SNS) topic that you specify in NotificationChannel
. To get the results of the text analysis operation, first check that the status value published to the Amazon SNS topic is SUCCEEDED. If the status is SUCCEEDED you can call either GetLendingAnalysis
or GetLendingAnalysisSummary
and provide the JobId
to obtain the results of the analysis.
If using OutputConfig
to specify an Amazon S3 bucket, the output will be contained within the specified prefix in a directory labeled with the job-id. In the directory there are 3 sub-directories:
detailedResponse (contains the GetLendingAnalysis response)
summaryResponse (for the GetLendingAnalysisSummary response)
splitDocuments (documents split across logical boundaries)
You aren\'t authorized to perform the action. Use the Amazon Resource Name (ARN) of an authorized user or IAM role to perform the operation.
', 'refs' => [], ], 'AnalyzeDocumentRequest' => [ 'base' => NULL, 'refs' => [], ], 'AnalyzeDocumentResponse' => [ 'base' => NULL, 'refs' => [], ], 'AnalyzeExpenseRequest' => [ 'base' => NULL, 'refs' => [], ], 'AnalyzeExpenseResponse' => [ 'base' => NULL, 'refs' => [], ], 'AnalyzeIDDetections' => [ 'base' => 'Used to contain the information detected by an AnalyzeID operation.
', 'refs' => [ 'IdentityDocumentField$Type' => NULL, 'IdentityDocumentField$ValueDetection' => NULL, ], ], 'AnalyzeIDRequest' => [ 'base' => NULL, 'refs' => [], ], 'AnalyzeIDResponse' => [ 'base' => NULL, 'refs' => [], ], 'BadDocumentException' => [ 'base' => 'Amazon Textract isn\'t able to read the document. For more information on the document limits in Amazon Textract, see limits.
', 'refs' => [], ], 'Block' => [ 'base' => 'A Block
represents items that are recognized in a document within a group of pixels close to each other. The information returned in a Block
object depends on the type of operation. In text detection for documents (for example DetectDocumentText), you get information about the detected words and lines of text. In text analysis (for example AnalyzeDocument), you can also get information about the fields, tables, and selection elements that are detected in the document.
An array of Block
objects is returned by both synchronous and asynchronous operations. In synchronous operations, such as DetectDocumentText, the array of Block
objects is the entire set of results. In asynchronous operations, such as GetDocumentAnalysis, the array is returned over one or more responses.
For more information, see How Amazon Textract Works.
', 'refs' => [ 'BlockList$member' => NULL, ], ], 'BlockList' => [ 'base' => NULL, 'refs' => [ 'AnalyzeDocumentResponse$Blocks' => 'The items that are detected and analyzed by AnalyzeDocument
.
An array of Block
objects that contain the text that\'s detected in the document.
This is a block object, the same as reported when DetectDocumentText is run on a document. It provides word level recognition of text.
', 'GetDocumentAnalysisResponse$Blocks' => 'The results of the text-analysis operation.
', 'GetDocumentTextDetectionResponse$Blocks' => 'The results of the text-detection operation.
', 'IdentityDocument$Blocks' => 'Individual word recognition, as returned by document detection.
', ], ], 'BlockType' => [ 'base' => NULL, 'refs' => [ 'Block$BlockType' => 'The type of text item that\'s recognized. In operations for text detection, the following types are returned:
PAGE - Contains a list of the LINE Block
objects that are detected on a document page.
WORD - A word detected on a document page. A word is one or more ISO basic Latin script characters that aren\'t separated by spaces.
LINE - A string of tab-delimited, contiguous words that are detected on a document page.
In text analysis operations, the following types are returned:
PAGE - Contains a list of child Block
objects that are detected on a document page.
KEY_VALUE_SET - Stores the KEY and VALUE Block
objects for linked text that\'s detected on a document page. Use the EntityType
field to determine if a KEY_VALUE_SET object is a KEY Block
object or a VALUE Block
object.
WORD - A word that\'s detected on a document page. A word is one or more ISO basic Latin script characters that aren\'t separated by spaces.
LINE - A string of tab-delimited, contiguous words that are detected on a document page.
TABLE - A table that\'s detected on a document page. A table is grid-based information with two or more rows or columns, with a cell span of one row and one column each.
TABLE_TITLE - The title of a table. A title is typically a line of text above or below a table, or embedded as the first row of a table.
TABLE_FOOTER - The footer associated with a table. A footer is typically a line or lines of text below a table or embedded as the last row of a table.
CELL - A cell within a detected table. The cell is the parent of the block that contains the text in the cell.
MERGED_CELL - A cell in a table whose content spans more than one row or column. The Relationships
array for this cell contain data from individual cells.
SELECTION_ELEMENT - A selection element such as an option button (radio button) or a check box that\'s detected on a document page. Use the value of SelectionStatus
to determine the status of the selection element.
SIGNATURE - The location and confidene score of a signature detected on a document page. Can be returned as part of a Key-Value pair or a detected cell.
QUERY - A question asked during the call of AnalyzeDocument. Contains an alias and an ID that attaches it to its answer.
QUERY_RESULT - A response to a question asked during the call of analyze document. Comes with an alias and ID for ease of locating in a response. Also contains location and confidence score.
The bounding box around the detected page, text, key-value pair, table, table cell, or selection element on a document page. The left
(x-coordinate) and top
(y-coordinate) are coordinates that represent the top and left sides of the bounding box. Note that the upper-left corner of the image is the origin (0,0).
The top
and left
values returned are ratios of the overall document page size. For example, if the input image is 700 x 200 pixels, and the top-left coordinate of the bounding box is 350 x 50 pixels, the API returns a left
value of 0.5 (350/700) and a top
value of 0.25 (50/200).
The width
and height
values represent the dimensions of the bounding box as a ratio of the overall document page dimension. For example, if the document page size is 700 x 200 pixels, and the bounding box width is 70 pixels, the width returned is 0.1.
An axis-aligned coarse representation of the location of the recognized item on the document page.
', ], ], 'ClientRequestToken' => [ 'base' => NULL, 'refs' => [ 'StartDocumentAnalysisRequest$ClientRequestToken' => 'The idempotent token that you use to identify the start request. If you use the same token with multiple StartDocumentAnalysis
requests, the same JobId
is returned. Use ClientRequestToken
to prevent the same job from being accidentally started more than once. For more information, see Calling Amazon Textract Asynchronous Operations.
The idempotent token that\'s used to identify the start request. If you use the same token with multiple StartDocumentTextDetection
requests, the same JobId
is returned. Use ClientRequestToken
to prevent the same job from being accidentally started more than once. For more information, see Calling Amazon Textract Asynchronous Operations.
The idempotent token that\'s used to identify the start request. If you use the same token with multiple StartDocumentTextDetection
requests, the same JobId
is returned. Use ClientRequestToken
to prevent the same job from being accidentally started more than once. For more information, see Calling Amazon Textract Asynchronous Operations
The idempotent token that you use to identify the start request. If you use the same token with multiple StartLendingAnalysis
requests, the same JobId
is returned. Use ClientRequestToken
to prevent the same job from being accidentally started more than once. For more information, see Calling Amazon Textract Asynchronous Operations.
Sets whether the input image is free of personally identifiable information or adult content.
', ], ], 'DetectDocumentTextRequest' => [ 'base' => NULL, 'refs' => [], ], 'DetectDocumentTextResponse' => [ 'base' => NULL, 'refs' => [], ], 'DetectedSignature' => [ 'base' => 'A structure that holds information regarding a detected signature on a page.
', 'refs' => [ 'DetectedSignatureList$member' => NULL, ], ], 'DetectedSignatureList' => [ 'base' => NULL, 'refs' => [ 'DocumentGroup$DetectedSignatures' => 'A list of the detected signatures found in a document group.
', ], ], 'Document' => [ 'base' => 'The input document, either as bytes or as an S3 object.
You pass image bytes to an Amazon Textract API operation by using the Bytes
property. For example, you would use the Bytes
property to pass a document loaded from a local file system. Image bytes passed by using the Bytes
property must be base64 encoded. Your code might not need to encode document file bytes if you\'re using an AWS SDK to call Amazon Textract API operations.
You pass images stored in an S3 bucket to an Amazon Textract API operation by using the S3Object
property. Documents stored in an S3 bucket don\'t need to be base64 encoded.
The AWS Region for the S3 bucket that contains the S3 object must match the AWS Region that you use for Amazon Textract operations.
If you use the AWS CLI to call Amazon Textract operations, passing image bytes using the Bytes property isn\'t supported. You must first upload the document to an Amazon S3 bucket, and then call the operation using the S3Object property.
For Amazon Textract to process an S3 object, the user must have permission to access the S3 object.
', 'refs' => [ 'AnalyzeDocumentRequest$Document' => '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.
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 or PNG 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.
Summary information about documents grouped by the same document type.
', 'refs' => [ 'DocumentGroupList$member' => NULL, ], ], 'DocumentGroupList' => [ 'base' => NULL, 'refs' => [ 'LendingSummary$DocumentGroups' => 'Contains an array of all DocumentGroup objects.
', ], ], 'DocumentLocation' => [ 'base' => 'The Amazon S3 bucket that contains the document to be processed. It\'s used by asynchronous operations.
The input document can be an image file in JPEG or PNG format. It can also be a file in PDF format.
', 'refs' => [ 'StartDocumentAnalysisRequest$DocumentLocation' => 'The location of the document to be processed.
', 'StartDocumentTextDetectionRequest$DocumentLocation' => 'The location of the document to be processed.
', 'StartExpenseAnalysisRequest$DocumentLocation' => 'The location of the document to be processed.
', 'StartLendingAnalysisRequest$DocumentLocation' => NULL, ], ], 'DocumentMetadata' => [ 'base' => 'Information about the input document.
', 'refs' => [ 'AnalyzeDocumentResponse$DocumentMetadata' => 'Metadata about the analyzed document. An example is the number of pages.
', 'AnalyzeExpenseResponse$DocumentMetadata' => NULL, 'AnalyzeIDResponse$DocumentMetadata' => NULL, 'DetectDocumentTextResponse$DocumentMetadata' => 'Metadata about the document. It contains the number of pages that are detected in the document.
', 'GetDocumentAnalysisResponse$DocumentMetadata' => 'Information about a document that Amazon Textract processed. DocumentMetadata
is returned in every page of paginated responses from an Amazon Textract video operation.
Information about a document that Amazon Textract processed. DocumentMetadata
is returned in every page of paginated responses from an Amazon Textract video operation.
Information about a document that Amazon Textract processed. DocumentMetadata
is returned in every page of paginated responses from an Amazon Textract operation.
The document being passed to AnalyzeID.
', ], ], 'DocumentTooLargeException' => [ 'base' => 'The document can\'t be processed because it\'s too large. The maximum document size for synchronous operations 10 MB. The maximum document size for asynchronous operations is 500 MB for PDF files.
', 'refs' => [], ], 'EntityType' => [ 'base' => NULL, 'refs' => [ 'EntityTypes$member' => NULL, ], ], 'EntityTypes' => [ 'base' => NULL, 'refs' => [ 'Block$EntityTypes' => 'The type of entity.
The following entity types can be returned by FORMS analysis:
KEY - An identifier for a field on the document.
VALUE - The field text.
The following entity types can be returned by TABLES analysis:
COLUMN_HEADER - Identifies a cell that is a header of a column.
TABLE_TITLE - Identifies a cell that is a title within the table.
TABLE_SECTION_TITLE - Identifies a cell that is a title of a section within a table. A section title is a cell that typically spans an entire row above a section.
TABLE_FOOTER - Identifies a cell that is a footer of a table.
TABLE_SUMMARY - Identifies a summary cell of a table. A summary cell can be a row of a table or an additional, smaller table that contains summary information for another table.
STRUCTURED_TABLE - Identifies a table with column headers where the content of each row corresponds to the headers.
SEMI_STRUCTURED_TABLE - Identifies a non-structured table.
EntityTypes
isn\'t returned by DetectDocumentText
and GetDocumentTextDetection
.
The error code for the warning.
', ], ], 'ExpenseCurrency' => [ 'base' => 'Returns the kind of currency detected.
', 'refs' => [ 'ExpenseField$Currency' => 'Shows the kind of currency, both the code and confidence associated with any monatary value detected.
', ], ], 'ExpenseDetection' => [ 'base' => 'An object used to store information about the Value or Label detected by Amazon Textract.
', 'refs' => [ 'ExpenseField$LabelDetection' => 'The explicitly stated label of a detected element.
', 'ExpenseField$ValueDetection' => 'The value of a detected element. Present in explicit and implicit elements.
', ], ], 'ExpenseDocument' => [ 'base' => 'The structure holding all the information returned by AnalyzeExpense
', 'refs' => [ 'ExpenseDocumentList$member' => NULL, 'Extraction$ExpenseDocument' => NULL, ], ], 'ExpenseDocumentList' => [ 'base' => NULL, 'refs' => [ 'AnalyzeExpenseResponse$ExpenseDocuments' => 'The expenses detected by Amazon Textract.
', 'GetExpenseAnalysisResponse$ExpenseDocuments' => 'The expenses detected by Amazon Textract.
', ], ], 'ExpenseField' => [ 'base' => 'Breakdown of detected information, seperated into the catagories Type, LabelDetection, and ValueDetection
', 'refs' => [ 'ExpenseFieldList$member' => NULL, ], ], 'ExpenseFieldList' => [ 'base' => NULL, 'refs' => [ 'ExpenseDocument$SummaryFields' => 'Any information found outside of a table by Amazon Textract.
', 'LineItemFields$LineItemExpenseFields' => 'ExpenseFields used to show information from detected lines on a table.
', ], ], 'ExpenseGroupProperty' => [ 'base' => 'Shows the group that a certain key belongs to. This helps differentiate between names and addresses for different organizations, that can be hard to determine via JSON response.
', 'refs' => [ 'ExpenseGroupPropertyList$member' => NULL, ], ], 'ExpenseGroupPropertyList' => [ 'base' => NULL, 'refs' => [ 'ExpenseField$GroupProperties' => 'Shows which group a response object belongs to, such as whether an address line belongs to the vendor\'s address or the recipent\'s address.
', ], ], 'ExpenseType' => [ 'base' => 'An object used to store information about the Type detected by Amazon Textract.
', 'refs' => [ 'ExpenseField$Type' => 'The implied label of a detected element. Present alongside LabelDetection for explicit elements.
', ], ], 'Extraction' => [ 'base' => 'Contains information extracted by an analysis operation after using StartLendingAnalysis.
', 'refs' => [ 'ExtractionList$member' => NULL, ], ], 'ExtractionList' => [ 'base' => NULL, 'refs' => [ 'LendingResult$Extractions' => 'An array of Extraction to hold structured data. e.g. normalized key value pairs instead of raw OCR detections .
', ], ], 'FeatureType' => [ 'base' => NULL, 'refs' => [ 'FeatureTypes$member' => NULL, ], ], 'FeatureTypes' => [ 'base' => NULL, 'refs' => [ 'AnalyzeDocumentRequest$FeatureTypes' => '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. To perform both forms and table analysis, add TABLES and FORMS to FeatureTypes
. To detect signatures within form data and table data, add SIGNATURES to either TABLES or FORMS. All lines and words detected in the document are included in the response (including text that isn\'t related to the value of FeatureTypes
).
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. To perform both types of analysis, add TABLES and FORMS to FeatureTypes
. All lines and words detected in the document are included in the response (including text that isn\'t related to the value of FeatureTypes
).
The width of the bounding box as a ratio of the overall document page width.
', 'BoundingBox$Height' => 'The height of the bounding box as a ratio of the overall document page height.
', 'BoundingBox$Left' => 'The left coordinate of the bounding box as a ratio of overall document page width.
', 'BoundingBox$Top' => 'The top coordinate of the bounding box as a ratio of overall document page height.
', 'Point$X' => 'The value of the X coordinate for a point on a Polygon
.
The value of the Y coordinate for a point on a Polygon
.
The Amazon Resource Name (ARN) of the flow definition.
', ], ], 'Geometry' => [ 'base' => 'Information about where the following items are located on a document page: detected page, text, key-value pairs, tables, table cells, and selection elements.
', 'refs' => [ 'Block$Geometry' => 'The location of the recognized text on the image. It includes an axis-aligned, coarse bounding box that surrounds the text, and a finer-grain polygon for more accurate spatial information.
', 'ExpenseDetection$Geometry' => NULL, 'LendingDetection$Geometry' => NULL, 'SignatureDetection$Geometry' => NULL, ], ], 'GetDocumentAnalysisRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetDocumentAnalysisResponse' => [ 'base' => NULL, 'refs' => [], ], 'GetDocumentTextDetectionRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetDocumentTextDetectionResponse' => [ 'base' => NULL, 'refs' => [], ], 'GetExpenseAnalysisRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetExpenseAnalysisResponse' => [ 'base' => NULL, 'refs' => [], ], 'GetLendingAnalysisRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetLendingAnalysisResponse' => [ 'base' => NULL, 'refs' => [], ], 'GetLendingAnalysisSummaryRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetLendingAnalysisSummaryResponse' => [ 'base' => NULL, 'refs' => [], ], 'HumanLoopActivationConditionsEvaluationResults' => [ 'base' => NULL, 'refs' => [ 'HumanLoopActivationOutput$HumanLoopActivationConditionsEvaluationResults' => 'Shows the result of condition evaluations, including those conditions which activated a human review.
', ], ], 'HumanLoopActivationOutput' => [ 'base' => 'Shows the results of the human in the loop evaluation. If there is no HumanLoopArn, the input did not trigger human review.
', 'refs' => [ 'AnalyzeDocumentResponse$HumanLoopActivationOutput' => 'Shows the results of the human in the loop evaluation.
', ], ], 'HumanLoopActivationReason' => [ 'base' => NULL, 'refs' => [ 'HumanLoopActivationReasons$member' => NULL, ], ], 'HumanLoopActivationReasons' => [ 'base' => NULL, 'refs' => [ 'HumanLoopActivationOutput$HumanLoopActivationReasons' => 'Shows if and why human review was needed.
', ], ], 'HumanLoopArn' => [ 'base' => NULL, 'refs' => [ 'HumanLoopActivationOutput$HumanLoopArn' => 'The Amazon Resource Name (ARN) of the HumanLoop created.
', ], ], 'HumanLoopConfig' => [ 'base' => 'Sets up the human review workflow the document will be sent to if one of the conditions is met. You can also set certain attributes of the image before review.
', 'refs' => [ 'AnalyzeDocumentRequest$HumanLoopConfig' => 'Sets the configuration for the human in the loop workflow for analyzing documents.
', ], ], 'HumanLoopDataAttributes' => [ 'base' => 'Allows you to set attributes of the image. Currently, you can declare an image as free of personally identifiable information and adult content.
', 'refs' => [ 'HumanLoopConfig$DataAttributes' => 'Sets attributes of the input data.
', ], ], 'HumanLoopName' => [ 'base' => NULL, 'refs' => [ 'HumanLoopConfig$HumanLoopName' => 'The name of the human workflow used for this image. This should be kept unique within a region.
', ], ], 'HumanLoopQuotaExceededException' => [ 'base' => 'Indicates you have exceeded the maximum number of active human in the loop workflows available
', 'refs' => [], ], 'IdList' => [ 'base' => NULL, 'refs' => [ 'Relationship$Ids' => 'An array of IDs for related blocks. You can get the type of the relationship from the Type
element.
A ClientRequestToken
input parameter was reused with an operation, but at least one of the other input parameters is different from the previous call to the operation.
The structure that lists each document processed in an AnalyzeID operation.
', 'refs' => [ 'Extraction$IdentityDocument' => NULL, 'IdentityDocumentList$member' => NULL, ], ], 'IdentityDocumentField' => [ 'base' => 'Structure containing both the normalized type of the extracted information and the text associated with it. These are extracted as Type and Value respectively.
', 'refs' => [ 'IdentityDocumentFieldList$member' => NULL, ], ], 'IdentityDocumentFieldList' => [ 'base' => NULL, 'refs' => [ 'IdentityDocument$IdentityDocumentFields' => 'The structure used to record information extracted from identity documents. Contains both normalized field and value of the extracted text.
', ], ], 'IdentityDocumentList' => [ 'base' => NULL, 'refs' => [ 'AnalyzeIDResponse$IdentityDocuments' => 'The list of documents processed by AnalyzeID. Includes a number denoting their place in the list and the response structure for the document.
', ], ], 'ImageBlob' => [ 'base' => NULL, 'refs' => [ 'Document$Bytes' => 'A blob of base64-encoded document bytes. The maximum size of a document that\'s provided in a blob of bytes is 5 MB. The document bytes must be in PNG or JPEG format.
If you\'re using an AWS SDK to call Amazon Textract, you might not need to base64-encode image bytes passed using the Bytes
field.
Amazon Textract experienced a service issue. Try your call again.
', 'refs' => [], ], 'InvalidJobIdException' => [ 'base' => 'An invalid job identifier was passed to an asynchronous analysis operation.
', 'refs' => [], ], 'InvalidKMSKeyException' => [ 'base' => 'Indicates you do not have decrypt permissions with the KMS key entered, or the KMS key was entered incorrectly.
', 'refs' => [], ], 'InvalidParameterException' => [ 'base' => 'An input parameter violated a constraint. For example, in synchronous operations, an InvalidParameterException
exception occurs when neither of the S3Object
or Bytes
values are supplied in the Document
request parameter. Validate your parameter before calling the API operation again.
Amazon Textract is unable to access the S3 object that\'s specified in the request. for more information, Configure Access to Amazon S3 For troubleshooting information, see Troubleshooting Amazon S3
', 'refs' => [], ], 'JobId' => [ 'base' => NULL, 'refs' => [ 'GetDocumentAnalysisRequest$JobId' => 'A unique identifier for the text-detection job. The JobId
is returned from StartDocumentAnalysis
. A JobId
value is only valid for 7 days.
A unique identifier for the text detection job. The JobId
is returned from StartDocumentTextDetection
. A JobId
value is only valid for 7 days.
A unique identifier for the text detection job. The JobId
is returned from StartExpenseAnalysis
. A JobId
value is only valid for 7 days.
A unique identifier for the lending or text-detection job. The JobId
is returned from StartLendingAnalysis
. A JobId
value is only valid for 7 days.
A unique identifier for the lending or text-detection job. The JobId
is returned from StartLendingAnalysis. A JobId
value is only valid for 7 days.
The identifier for the document text detection job. Use JobId
to identify the job in a subsequent call to GetDocumentAnalysis
. A JobId
value is only valid for 7 days.
The identifier of the text detection job for the document. Use JobId
to identify the job in a subsequent call to GetDocumentTextDetection
. A JobId
value is only valid for 7 days.
A unique identifier for the text detection job. The JobId
is returned from StartExpenseAnalysis
. A JobId
value is only valid for 7 days.
A unique identifier for the lending or text-detection job. The JobId
is returned from StartLendingAnalysis
. A JobId
value is only valid for 7 days.
The current status of the text detection job.
', 'GetDocumentTextDetectionResponse$JobStatus' => 'The current status of the text detection job.
', 'GetExpenseAnalysisResponse$JobStatus' => 'The current status of the text detection job.
', 'GetLendingAnalysisResponse$JobStatus' => 'The current status of the lending analysis job.
', 'GetLendingAnalysisSummaryResponse$JobStatus' => 'The current status of the lending analysis job.
', ], ], 'JobTag' => [ 'base' => NULL, 'refs' => [ 'StartDocumentAnalysisRequest$JobTag' => 'An identifier that you specify that\'s included in the completion notification published to the Amazon SNS topic. For example, you can use JobTag
to identify the type of document that the completion notification corresponds to (such as a tax form or a receipt).
An identifier that you specify that\'s included in the completion notification published to the Amazon SNS topic. For example, you can use JobTag
to identify the type of document that the completion notification corresponds to (such as a tax form or a receipt).
An identifier you specify that\'s included in the completion notification published to the Amazon SNS topic. For example, you can use JobTag
to identify the type of document that the completion notification corresponds to (such as a tax form or a receipt).
An identifier that you specify to be included in the completion notification published to the Amazon SNS topic. For example, you can use JobTag
to identify the type of document that the completion notification corresponds to (such as a tax form or a receipt).
The KMS key used to encrypt the inference results. This can be in either Key ID or Key Alias format. When a KMS key is provided, the KMS key will be used for server-side encryption of the objects in the customer bucket. When this parameter is not enabled, the result will be encrypted server side,using SSE-S3.
', 'StartDocumentTextDetectionRequest$KMSKeyId' => 'The KMS key used to encrypt the inference results. This can be in either Key ID or Key Alias format. When a KMS key is provided, the KMS key will be used for server-side encryption of the objects in the customer bucket. When this parameter is not enabled, the result will be encrypted server side,using SSE-S3.
', 'StartExpenseAnalysisRequest$KMSKeyId' => 'The KMS key used to encrypt the inference results. This can be in either Key ID or Key Alias format. When a KMS key is provided, the KMS key will be used for server-side encryption of the objects in the customer bucket. When this parameter is not enabled, the result will be encrypted server side,using SSE-S3.
', 'StartLendingAnalysisRequest$KMSKeyId' => 'The KMS key used to encrypt the inference results. This can be in either Key ID or Key Alias format. When a KMS key is provided, the KMS key will be used for server-side encryption of the objects in the customer bucket. When this parameter is not enabled, the result will be encrypted server side, using SSE-S3.
', ], ], 'LendingDetection' => [ 'base' => 'The results extracted for a lending document.
', 'refs' => [ 'LendingDetectionList$member' => NULL, 'LendingField$KeyDetection' => NULL, ], ], 'LendingDetectionList' => [ 'base' => NULL, 'refs' => [ 'LendingField$ValueDetections' => 'An array of LendingDetection objects.
', ], ], 'LendingDocument' => [ 'base' => 'Holds the structured data returned by AnalyzeDocument for lending documents.
', 'refs' => [ 'Extraction$LendingDocument' => 'Holds the structured data returned by AnalyzeDocument for lending documents.
', ], ], 'LendingField' => [ 'base' => 'Holds the normalized key-value pairs returned by AnalyzeDocument, including the document type, detected text, and geometry.
', 'refs' => [ 'LendingFieldList$member' => NULL, ], ], 'LendingFieldList' => [ 'base' => NULL, 'refs' => [ 'LendingDocument$LendingFields' => 'An array of LendingField objects.
', ], ], 'LendingResult' => [ 'base' => 'Contains the detections for each page analyzed through the Analyze Lending API.
', 'refs' => [ 'LendingResultList$member' => NULL, ], ], 'LendingResultList' => [ 'base' => NULL, 'refs' => [ 'GetLendingAnalysisResponse$Results' => 'Holds the information returned by one of AmazonTextract\'s document analysis operations for the pinstripe.
', ], ], 'LendingSummary' => [ 'base' => 'Contains information regarding DocumentGroups and UndetectedDocumentTypes.
', 'refs' => [ 'GetLendingAnalysisSummaryResponse$Summary' => 'Contains summary information for documents grouped by type.
', ], ], 'LimitExceededException' => [ 'base' => 'An Amazon Textract service limit was exceeded. For example, if you start too many asynchronous jobs concurrently, calls to start operations (StartDocumentTextDetection
, for example) raise a LimitExceededException exception (HTTP status code: 400) until the number of concurrently running jobs is below the Amazon Textract service limit.
A structure that holds information about the different lines found in a document\'s tables.
', 'refs' => [ 'LineItemList$member' => NULL, ], ], 'LineItemGroup' => [ 'base' => 'A grouping of tables which contain LineItems, with each table identified by the table\'s LineItemGroupIndex
.
Information detected on each table of a document, seperated into LineItems
.
The breakdown of information on a particular line of a table.
', ], ], 'MaxResults' => [ 'base' => NULL, 'refs' => [ 'GetDocumentAnalysisRequest$MaxResults' => 'The maximum number of results to return per paginated call. The largest value that you can specify is 1,000. If you specify a value greater than 1,000, a maximum of 1,000 results is returned. The default value is 1,000.
', 'GetDocumentTextDetectionRequest$MaxResults' => 'The maximum number of results to return per paginated call. The largest value you can specify is 1,000. If you specify a value greater than 1,000, a maximum of 1,000 results is returned. The default value is 1,000.
', 'GetExpenseAnalysisRequest$MaxResults' => 'The maximum number of results to return per paginated call. The largest value you can specify is 20. If you specify a value greater than 20, a maximum of 20 results is returned. The default value is 20.
', 'GetLendingAnalysisRequest$MaxResults' => 'The maximum number of results to return per paginated call. The largest value that you can specify is 30. If you specify a value greater than 30, a maximum of 30 results is returned. The default value is 30.
', ], ], 'NonEmptyString' => [ 'base' => NULL, 'refs' => [ 'Block$Id' => 'The identifier for the recognized text. The identifier is only unique for a single operation.
', 'DocumentGroup$Type' => 'The type of document that Amazon Textract has detected. See Analyze Lending Response Objects for a list of all types returned by Textract.
', 'IdList$member' => NULL, 'Prediction$Value' => 'The predicted value of a detected object.
', 'UndetectedDocumentTypeList$member' => NULL, ], ], 'NormalizedValue' => [ 'base' => 'Contains information relating to dates in a document, including the type of value, and the value.
', 'refs' => [ 'AnalyzeIDDetections$NormalizedValue' => 'Only returned for dates, returns the type of value detected and the date written in a more machine readable way.
', ], ], 'NotificationChannel' => [ 'base' => 'The Amazon Simple Notification Service (Amazon SNS) topic to which Amazon Textract publishes the completion status of an asynchronous document operation.
', 'refs' => [ 'StartDocumentAnalysisRequest$NotificationChannel' => 'The Amazon SNS topic ARN that you want Amazon Textract to publish the completion status of the operation to.
', 'StartDocumentTextDetectionRequest$NotificationChannel' => 'The Amazon SNS topic ARN that you want Amazon Textract to publish the completion status of the operation to.
', 'StartExpenseAnalysisRequest$NotificationChannel' => 'The Amazon SNS topic ARN that you want Amazon Textract to publish the completion status of the operation to.
', 'StartLendingAnalysisRequest$NotificationChannel' => NULL, ], ], 'OutputConfig' => [ 'base' => 'Sets whether or not your output will go to a user created bucket. Used to set the name of the bucket, and the prefix on the output file.
OutputConfig
is an optional parameter which lets you adjust where your output will be placed. By default, Amazon Textract will store the results internally and can only be accessed by the Get API operations. With OutputConfig
enabled, you can set the name of the bucket the output will be sent to the file prefix of the results where you can download your results. Additionally, you can set the KMSKeyID
parameter to a customer master key (CMK) to encrypt your output. Without this parameter set Amazon Textract will encrypt server-side using the AWS managed CMK for Amazon S3.
Decryption of Customer Content is necessary for processing of the documents by Amazon Textract. If your account is opted out under an AI services opt out policy then all unencrypted Customer Content is immediately and permanently deleted after the Customer Content has been processed by the service. No copy of of the output is retained by Amazon Textract. For information about how to opt out, see Managing AI services opt-out policy.
For more information on data privacy, see the Data Privacy FAQ.
', 'refs' => [ 'StartDocumentAnalysisRequest$OutputConfig' => 'Sets if the output will go to a customer defined bucket. By default, Amazon Textract will save the results internally to be accessed by the GetDocumentAnalysis operation.
', 'StartDocumentTextDetectionRequest$OutputConfig' => 'Sets if the output will go to a customer defined bucket. By default Amazon Textract will save the results internally to be accessed with the GetDocumentTextDetection operation.
', 'StartExpenseAnalysisRequest$OutputConfig' => 'Sets if the output will go to a customer defined bucket. By default, Amazon Textract will save the results internally to be accessed by the GetExpenseAnalysis
operation.
The class assigned to a Page object detected in an input document. Contains information regarding the predicted type/class of a document\'s page and the page number that the Page object was detected on.
', 'refs' => [ 'LendingResult$PageClassification' => 'The classifier result for a given page.
', ], ], 'PageList' => [ 'base' => NULL, 'refs' => [ 'SplitDocument$Pages' => 'An array of page numbers for a for a given document, ordered by logical boundary.
', ], ], 'Pages' => [ 'base' => NULL, 'refs' => [ 'Warning$Pages' => 'A list of the pages that the warning applies to.
', ], ], 'PaginationToken' => [ 'base' => NULL, 'refs' => [ 'GetDocumentAnalysisRequest$NextToken' => 'If the previous response was incomplete (because there are more blocks to retrieve), Amazon Textract returns a pagination token in the response. You can use this pagination token to retrieve the next set of blocks.
', 'GetDocumentAnalysisResponse$NextToken' => '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.
', 'GetDocumentTextDetectionRequest$NextToken' => 'If the previous response was incomplete (because there are more blocks to retrieve), Amazon Textract returns a pagination token in the response. You can use this pagination token to retrieve the next set of blocks.
', 'GetDocumentTextDetectionResponse$NextToken' => '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.
', 'GetExpenseAnalysisRequest$NextToken' => 'If the previous response was incomplete (because there are more blocks to retrieve), Amazon Textract returns a pagination token in the response. You can use this pagination token to retrieve the next set of blocks.
', 'GetExpenseAnalysisResponse$NextToken' => '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.
', 'GetLendingAnalysisRequest$NextToken' => 'If the previous response was incomplete, Amazon Textract returns a pagination token in the response. You can use this pagination token to retrieve the next set of lending results.
', 'GetLendingAnalysisResponse$NextToken' => '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 lending results.
', ], ], 'Percent' => [ 'base' => NULL, 'refs' => [ 'AnalyzeIDDetections$Confidence' => 'The confidence score of the detected text.
', 'Block$Confidence' => 'The confidence score that Amazon Textract has in the accuracy of the recognized text and the accuracy of the geometry points around the recognized text.
', 'ExpenseCurrency$Confidence' => 'Percentage confideence in the detected currency.
', 'ExpenseDetection$Confidence' => 'The confidence in detection, as a percentage
', 'ExpenseType$Confidence' => 'The confidence of accuracy, as a percentage.
', 'LendingDetection$Confidence' => 'The confidence level for the text of a detected value in a lending document.
', 'Prediction$Confidence' => 'Amazon Textract\'s confidence in its predicted value.
', 'SignatureDetection$Confidence' => 'The confidence, from 0 to 100, in the predicted values for a detected signature.
', ], ], 'Point' => [ 'base' => 'The X and Y coordinates of a point on a document page. The X and Y values that are returned are ratios of the overall document page size. For example, if the input document is 700 x 200 and the operation returns X=0.5 and Y=0.25, then the point is at the (350,50) pixel coordinate on the document page.
An array of Point
objects, Polygon
, is returned by DetectDocumentText. Polygon
represents a fine-grained polygon around detected text. For more information, see Geometry in the Amazon Textract Developer Guide.
Within the bounding box, a fine-grained polygon around the recognized item.
', ], ], 'Prediction' => [ 'base' => 'Contains information regarding predicted values returned by Amazon Textract operations, including the predicted value and the confidence in the predicted value.
', 'refs' => [ 'PredictionList$member' => NULL, ], ], 'PredictionList' => [ 'base' => NULL, 'refs' => [ 'PageClassification$PageType' => 'The class, or document type, assigned to a detected Page object. The class, or document type, assigned to a detected Page object.
', 'PageClassification$PageNumber' => 'The page number the value was detected on, relative to Amazon Textract\'s starting position.
', ], ], 'ProvisionedThroughputExceededException' => [ 'base' => 'The number of requests exceeded your throughput limit. If you want to increase this limit, contact Amazon Textract.
', 'refs' => [], ], 'Queries' => [ 'base' => NULL, 'refs' => [ 'QueriesConfig$Queries' => '', ], ], 'QueriesConfig' => [ 'base' => '', 'refs' => [ 'AnalyzeDocumentRequest$QueriesConfig' => 'Contains Queries and the alias for those Queries, as determined by the input.
', 'StartDocumentAnalysisRequest$QueriesConfig' => NULL, ], ], 'Query' => [ 'base' => 'Each query contains the question you want to ask in the Text and the alias you want to associate.
', 'refs' => [ 'Block$Query' => '', 'Queries$member' => NULL, ], ], 'QueryInput' => [ 'base' => NULL, 'refs' => [ 'Query$Text' => 'Question that Amazon Textract will apply to the document. An example would be "What is the customer\'s SSN?"
', 'Query$Alias' => 'Alias attached to the query, for ease of location.
', ], ], 'QueryPage' => [ 'base' => NULL, 'refs' => [ 'QueryPages$member' => NULL, ], ], 'QueryPages' => [ 'base' => NULL, 'refs' => [ 'Query$Pages' => 'Pages is a parameter that the user inputs to specify which pages to apply a query to. The following is a list of rules for using this parameter.
If a page is not specified, it is set to ["1"]
by default.
The following characters are allowed in the parameter\'s string: 0 1 2 3 4 5 6 7 8 9 - *
. No whitespace is allowed.
When using * to indicate all pages, it must be the only element in the list.
You can use page intervals, such as [“1-3”, “1-1”, “4-*”]
. Where *
indicates last page of document.
Specified pages must be greater than 0 and less than or equal to the number of pages in the document.
Information about how blocks are related to each other. A Block
object contains 0 or more Relation
objects in a list, Relationships
. For more information, see Block.
The Type
element provides the type of the relationship for all blocks in the IDs
array.
A list of relationship objects that describe how blocks are related to each other. For example, a LINE block object contains a CHILD relationship type with the WORD blocks that make up the line of text. There aren\'t Relationship objects in the list for relationships that don\'t exist, such as when the current block has no child blocks.
', ], ], 'RelationshipType' => [ 'base' => NULL, 'refs' => [ 'Relationship$Type' => 'The type of relationship between the blocks in the IDs array and the current block. The following list describes the relationship types that can be returned.
VALUE - A list that contains the ID of the VALUE block that\'s associated with the KEY of a key-value pair.
CHILD - A list of IDs that identify blocks found within the current block object. For example, WORD blocks have a CHILD relationship to the LINE block type.
MERGED_CELL - A list of IDs that identify each of the MERGED_CELL block types in a table.
ANSWER - A list that contains the ID of the QUERY_RESULT block that’s associated with the corresponding QUERY block.
TABLE - A list of IDs that identify associated TABLE block types.
TABLE_TITLE - A list that contains the ID for the TABLE_TITLE block type in a table.
TABLE_FOOTER - A list of IDs that identify the TABLE_FOOTER block types in a table.
The Amazon Resource Name (ARN) of an IAM role that gives Amazon Textract publishing permissions to the Amazon SNS topic.
', ], ], 'S3Bucket' => [ 'base' => NULL, 'refs' => [ 'OutputConfig$S3Bucket' => 'The name of the bucket your output will go to.
', 'S3Object$Bucket' => 'The name of the S3 bucket. Note that the # character is not valid in the file name.
', ], ], 'S3Object' => [ 'base' => 'The S3 bucket name and file name that identifies the document.
The AWS Region for the S3 bucket that contains the document must match the Region that you use for Amazon Textract operations.
For Amazon Textract to process a file in an S3 bucket, the user must have permission to access the S3 bucket and file.
', 'refs' => [ 'Document$S3Object' => 'Identifies an S3 object as the document source. The maximum size of a document that\'s stored in an S3 bucket is 5 MB.
', 'DocumentLocation$S3Object' => 'The Amazon S3 bucket that contains the input document.
', ], ], 'S3ObjectName' => [ 'base' => NULL, 'refs' => [ 'OutputConfig$S3Prefix' => 'The prefix of the object key that the output will be saved to. When not enabled, the prefix will be “textract_output".
', 'S3Object$Name' => 'The file name of the input document. Synchronous operations can use image files that are in JPEG or PNG format. Asynchronous operations also support PDF and TIFF format files.
', ], ], 'S3ObjectVersion' => [ 'base' => NULL, 'refs' => [ 'S3Object$Version' => 'If the bucket has versioning enabled, you can specify the object version.
', ], ], 'SNSTopicArn' => [ 'base' => NULL, 'refs' => [ 'NotificationChannel$SNSTopicArn' => 'The Amazon SNS topic that Amazon Textract posts the completion status to.
', ], ], 'SelectionStatus' => [ 'base' => NULL, 'refs' => [ 'Block$SelectionStatus' => 'The selection status of a selection element, such as an option button or check box.
', 'LendingDetection$SelectionStatus' => 'The selection status of a selection element, such as an option button or check box.
', ], ], 'SignatureDetection' => [ 'base' => 'Information regarding a detected signature on a page.
', 'refs' => [ 'SignatureDetectionList$member' => NULL, ], ], 'SignatureDetectionList' => [ 'base' => NULL, 'refs' => [ 'LendingDocument$SignatureDetections' => 'A list of signatures detected in a lending document.
', ], ], 'SplitDocument' => [ 'base' => 'Contains information about the pages of a document, defined by logical boundary.
', 'refs' => [ 'SplitDocumentList$member' => NULL, ], ], 'SplitDocumentList' => [ 'base' => NULL, 'refs' => [ 'DocumentGroup$SplitDocuments' => 'An array that contains information about the pages of a document, defined by logical boundary.
', ], ], 'StartDocumentAnalysisRequest' => [ 'base' => NULL, 'refs' => [], ], 'StartDocumentAnalysisResponse' => [ 'base' => NULL, 'refs' => [], ], 'StartDocumentTextDetectionRequest' => [ 'base' => NULL, 'refs' => [], ], 'StartDocumentTextDetectionResponse' => [ 'base' => NULL, 'refs' => [], ], 'StartExpenseAnalysisRequest' => [ 'base' => NULL, 'refs' => [], ], 'StartExpenseAnalysisResponse' => [ 'base' => NULL, 'refs' => [], ], 'StartLendingAnalysisRequest' => [ 'base' => NULL, 'refs' => [], ], 'StartLendingAnalysisResponse' => [ 'base' => NULL, 'refs' => [], ], 'StatusMessage' => [ 'base' => NULL, 'refs' => [ 'GetDocumentAnalysisResponse$StatusMessage' => 'Returns if the detection job could not be completed. Contains explanation for what error occured.
', 'GetDocumentTextDetectionResponse$StatusMessage' => 'Returns if the detection job could not be completed. Contains explanation for what error occured.
', 'GetExpenseAnalysisResponse$StatusMessage' => 'Returns if the detection job could not be completed. Contains explanation for what error occured.
', 'GetLendingAnalysisResponse$StatusMessage' => 'Returns if the lending analysis job could not be completed. Contains explanation for what error occurred.
', 'GetLendingAnalysisSummaryResponse$StatusMessage' => 'Returns if the lending analysis could not be completed. Contains explanation for what error occurred.
', ], ], 'String' => [ 'base' => NULL, 'refs' => [ 'AnalyzeDocumentResponse$AnalyzeDocumentModelVersion' => 'The version of the model used to analyze the document.
', 'AnalyzeIDDetections$Text' => 'Text of either the normalized field or value associated with it.
', 'AnalyzeIDResponse$AnalyzeIDModelVersion' => 'The version of the AnalyzeIdentity API being used to process documents.
', 'Block$Text' => 'The word or line of text that\'s recognized by Amazon Textract.
', 'DetectDocumentTextResponse$DetectDocumentTextModelVersion' => '', 'ExpenseCurrency$Code' => 'Currency code for detected currency. the current supported codes are:
USD
EUR
GBP
CAD
INR
JPY
CHF
AUD
CNY
BZR
SEK
HKD
The word or line of text recognized by Amazon Textract
', 'ExpenseGroupProperty$Id' => 'Provides a group Id number, which will be the same for each in the group.
', 'ExpenseType$Text' => 'The word or line of text detected by Amazon Textract.
', 'GetDocumentAnalysisResponse$AnalyzeDocumentModelVersion' => '', 'GetDocumentTextDetectionResponse$DetectDocumentTextModelVersion' => '', 'GetExpenseAnalysisResponse$AnalyzeExpenseModelVersion' => 'The current model version of AnalyzeExpense.
', 'GetLendingAnalysisResponse$AnalyzeLendingModelVersion' => 'The current model version of the Analyze Lending API.
', 'GetLendingAnalysisSummaryResponse$AnalyzeLendingModelVersion' => 'The current model version of the Analyze Lending API.
', 'HumanLoopQuotaExceededException$ResourceType' => 'The resource type.
', 'HumanLoopQuotaExceededException$QuotaCode' => 'The quota code.
', 'HumanLoopQuotaExceededException$ServiceCode' => 'The service code.
', 'LendingDetection$Text' => 'The text extracted for a detected value in a lending document.
', 'LendingField$Type' => 'The type of the lending document.
', 'NormalizedValue$Value' => 'The value of the date, written as Year-Month-DayTHour:Minute:Second.
', 'StringList$member' => NULL, ], ], 'StringList' => [ 'base' => NULL, 'refs' => [ 'ExpenseGroupProperty$Types' => 'Informs you on whether the expense group is a name or an address.
', ], ], 'TextType' => [ 'base' => NULL, 'refs' => [ 'Block$TextType' => 'The kind of text that Amazon Textract has detected. Can check for handwritten text and printed text.
', ], ], 'ThrottlingException' => [ 'base' => 'Amazon Textract is temporarily unable to process the request. Try your call again.
', 'refs' => [], ], 'UInteger' => [ 'base' => NULL, 'refs' => [ 'Block$RowIndex' => 'The row in which a table cell is located. The first row position is 1. RowIndex
isn\'t returned by DetectDocumentText
and GetDocumentTextDetection
.
The column in which a table cell appears. The first column position is 1. ColumnIndex
isn\'t returned by DetectDocumentText
and GetDocumentTextDetection
.
The number of rows that a table cell spans. RowSpan
isn\'t returned by DetectDocumentText
and GetDocumentTextDetection
.
The number of columns that a table cell spans. ColumnSpan
isn\'t returned by DetectDocumentText
and GetDocumentTextDetection
.
The page on which a block was detected. Page
is returned by synchronous and asynchronous operations. Page values greater than 1 are only returned for multipage documents that are in PDF or TIFF format. A scanned image (JPEG/PNG) provided to an asynchronous operation, even if it contains multiple document pages, is considered a single-page document. This means that for scanned images the value of Page
is always 1. Synchronous operations will also return a Page
value of 1 because every input document is considered to be a single-page document.
The page a detected signature was found on.
', 'DocumentMetadata$Pages' => 'The number of pages that are detected in the document.
', 'ExpenseDocument$ExpenseIndex' => 'Denotes which invoice or receipt in the document the information is coming from. First document will be 1, the second 2, and so on.
', 'ExpenseField$PageNumber' => 'The page number the value was detected on.
', 'IdentityDocument$DocumentIndex' => 'Denotes the placement of a document in the IdentityDocument list. The first document is marked 1, the second 2 and so on.
', 'LendingResult$Page' => 'The page number for a page, with regard to whole submission.
', 'LineItemGroup$LineItemGroupIndex' => 'The number used to identify a specific table in a document. The first table encountered will have a LineItemGroupIndex of 1, the second 2, etc.
', 'PageList$member' => NULL, 'Pages$member' => NULL, 'SplitDocument$Index' => 'The index for a given document in a DocumentGroup of a specific Type.
', 'UndetectedSignature$Page' => 'The page where a signature was expected but not found.
', ], ], 'UndetectedDocumentTypeList' => [ 'base' => NULL, 'refs' => [ 'LendingSummary$UndetectedDocumentTypes' => 'UndetectedDocumentTypes.
', ], ], 'UndetectedSignature' => [ 'base' => 'A structure containing information about an undetected signature on a page where it was expected but not found.
', 'refs' => [ 'UndetectedSignatureList$member' => NULL, ], ], 'UndetectedSignatureList' => [ 'base' => NULL, 'refs' => [ 'DocumentGroup$UndetectedSignatures' => 'A list of any expected signatures not found in a document group.
', ], ], 'UnsupportedDocumentException' => [ 'base' => 'The format of the input document isn\'t supported. Documents for operations can be in PNG, JPEG, PDF, or TIFF format.
', 'refs' => [], ], 'ValueType' => [ 'base' => NULL, 'refs' => [ 'NormalizedValue$ValueType' => 'The normalized type of the value detected. In this case, DATE.
', ], ], 'Warning' => [ 'base' => 'A warning about an issue that occurred during asynchronous text analysis (StartDocumentAnalysis) or asynchronous document text detection (StartDocumentTextDetection).
', 'refs' => [ 'Warnings$member' => NULL, ], ], 'Warnings' => [ 'base' => NULL, 'refs' => [ 'GetDocumentAnalysisResponse$Warnings' => 'A list of warnings that occurred during the document-analysis operation.
', 'GetDocumentTextDetectionResponse$Warnings' => 'A list of warnings that occurred during the text-detection operation for the document.
', 'GetExpenseAnalysisResponse$Warnings' => 'A list of warnings that occurred during the text-detection operation for the document.
', 'GetLendingAnalysisResponse$Warnings' => 'A list of warnings that occurred during the lending analysis operation.
', 'GetLendingAnalysisSummaryResponse$Warnings' => 'A list of warnings that occurred during the lending analysis operation.
', ], ], ],];