Class: Aws::Comprehend::Types::BatchDetectDominantLanguageResponse

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-comprehend/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#error_listArray<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.

Returns:



140
141
142
143
144
145
# File 'lib/aws-sdk-comprehend/types.rb', line 140

class BatchDetectDominantLanguageResponse < Struct.new(
  :result_list,
  :error_list)
  SENSITIVE = []
  include Aws::Structure
end

#result_listArray<Types::BatchDetectDominantLanguageItemResult>

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.



140
141
142
143
144
145
# File 'lib/aws-sdk-comprehend/types.rb', line 140

class BatchDetectDominantLanguageResponse < Struct.new(
  :result_list,
  :error_list)
  SENSITIVE = []
  include Aws::Structure
end