Class: Aws::Comprehend::Types::BatchDetectDominantLanguageItemResult
- Inherits:
-
Struct
- Object
- Struct
- Aws::Comprehend::Types::BatchDetectDominantLanguageItemResult
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-comprehend/types.rb
Overview
The result of calling the operation. The operation returns one object for each document that is successfully processed by the operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#index ⇒ Integer
The zero-based index of the document in the input list.
-
#languages ⇒ Array<Types::DominantLanguage>
One or more DominantLanguage objects describing the dominant languages in the document.
Instance Attribute Details
#index ⇒ Integer
The zero-based index of the document in the input list.
102 103 104 105 106 107 |
# File 'lib/aws-sdk-comprehend/types.rb', line 102 class BatchDetectDominantLanguageItemResult < Struct.new( :index, :languages) SENSITIVE = [] include Aws::Structure end |
#languages ⇒ Array<Types::DominantLanguage>
One or more DominantLanguage objects describing the dominant languages in the document.
102 103 104 105 106 107 |
# File 'lib/aws-sdk-comprehend/types.rb', line 102 class BatchDetectDominantLanguageItemResult < Struct.new( :index, :languages) SENSITIVE = [] include Aws::Structure end |