Class: Aws::Comprehend::Types::BatchItemError
- Inherits:
-
Struct
- Object
- Struct
- Aws::Comprehend::Types::BatchItemError
- Defined in:
- gems/aws-sdk-comprehend/lib/aws-sdk-comprehend/types.rb
Overview
Describes an error that occurred while processing a document in a
batch. The operation returns on BatchItemError
object for each
document that contained an error.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#error_code ⇒ String
The numeric error code of the error.
-
#error_message ⇒ String
A text description of the error.
-
#index ⇒ Integer
The zero-based index of the document in the input list.
Instance Attribute Details
#error_code ⇒ String
The numeric error code of the error.
491 492 493 494 495 496 497 |
# File 'gems/aws-sdk-comprehend/lib/aws-sdk-comprehend/types.rb', line 491 class BatchItemError < Struct.new( :index, :error_code, :error_message) SENSITIVE = [] include Aws::Structure end |
#error_message ⇒ String
A text description of the error.
491 492 493 494 495 496 497 |
# File 'gems/aws-sdk-comprehend/lib/aws-sdk-comprehend/types.rb', line 491 class BatchItemError < Struct.new( :index, :error_code, :error_message) SENSITIVE = [] include Aws::Structure end |
#index ⇒ Integer
The zero-based index of the document in the input list.
491 492 493 494 495 496 497 |
# File 'gems/aws-sdk-comprehend/lib/aws-sdk-comprehend/types.rb', line 491 class BatchItemError < Struct.new( :index, :error_code, :error_message) SENSITIVE = [] include Aws::Structure end |