Class: Aws::Comprehend::Types::ErrorsListItem
- Inherits:
-
Struct
- Object
- Struct
- Aws::Comprehend::Types::ErrorsListItem
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-comprehend/types.rb
Overview
Text extraction encountered one or more page-level errors in the input document.
The `ErrorCode` contains one of the following values:
-
TEXTRACT_BAD_PAGE - Amazon Textract cannot read the page. For more information about page limits in Amazon Textract, see [ Page Quotas in Amazon Textract].
-
TEXTRACT_PROVISIONED_THROUGHPUT_EXCEEDED - The number of requests exceeded your throughput limit. For more information about throughput quotas in Amazon Textract, see [ Default quotas in Amazon Textract].
-
PAGE_CHARACTERS_EXCEEDED - Too many text characters on the page (10,000 characters maximum).
-
PAGE_SIZE_EXCEEDED - The maximum page size is 10 MB.
-
INTERNAL_SERVER_ERROR - The request encountered a service issue. Try the API request again.
[1]: docs.aws.amazon.com/textract/latest/dg/limits-document.html [2]: docs.aws.amazon.com/textract/latest/dg/limits-quotas-explained.html
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#error_code ⇒ String
Error code for the cause of the error.
-
#error_message ⇒ String
Text message explaining the reason for the error.
-
#page ⇒ Integer
Page number where the error occurred.
Instance Attribute Details
#error_code ⇒ String
Error code for the cause of the error.
4391 4392 4393 4394 4395 4396 4397 |
# File 'lib/aws-sdk-comprehend/types.rb', line 4391 class ErrorsListItem < Struct.new( :page, :error_code, :error_message) SENSITIVE = [] include Aws::Structure end |
#error_message ⇒ String
Text message explaining the reason for the error.
4391 4392 4393 4394 4395 4396 4397 |
# File 'lib/aws-sdk-comprehend/types.rb', line 4391 class ErrorsListItem < Struct.new( :page, :error_code, :error_message) SENSITIVE = [] include Aws::Structure end |
#page ⇒ Integer
Page number where the error occurred.
4391 4392 4393 4394 4395 4396 4397 |
# File 'lib/aws-sdk-comprehend/types.rb', line 4391 class ErrorsListItem < Struct.new( :page, :error_code, :error_message) SENSITIVE = [] include Aws::Structure end |