Class: Aws::Comprehend::Types::BatchDetectEntitiesResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::Comprehend::Types::BatchDetectEntitiesResponse
- Defined in:
- gems/aws-sdk-comprehend/lib/aws-sdk-comprehend/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#error_list ⇒ Array<Types::BatchItemError>
A list containing one object for each document that contained an error.
-
#result_list ⇒ Array<Types::BatchDetectEntitiesItemResult>
A list of objects containing the results of the operation.
Instance Attribute Details
#error_list ⇒ Array<Types::BatchItemError>
A list containing one object for each document that contained an
error. The results are sorted in ascending order by the Index
field and match the order of the documents in the input list. If
there are no errors in the batch, the ErrorList
is empty.
205 206 207 208 209 210 |
# File 'gems/aws-sdk-comprehend/lib/aws-sdk-comprehend/types.rb', line 205 class BatchDetectEntitiesResponse < Struct.new( :result_list, :error_list) SENSITIVE = [] include Aws::Structure end |
#result_list ⇒ Array<Types::BatchDetectEntitiesItemResult>
A list of objects containing the results of the operation. The
results are sorted in ascending order by the Index
field and match
the order of the documents in the input list. If all of the
documents contain an error, the ResultList
is empty.
205 206 207 208 209 210 |
# File 'gems/aws-sdk-comprehend/lib/aws-sdk-comprehend/types.rb', line 205 class BatchDetectEntitiesResponse < Struct.new( :result_list, :error_list) SENSITIVE = [] include Aws::Structure end |