Class: Aws::Comprehend::Types::BatchDetectDominantLanguageItemResult

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-comprehend/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

Instance Attribute Details

#indexInteger

The zero-based index of the document in the input list.

Returns:

  • (Integer)


102
103
104
105
106
107
# File 'gems/aws-sdk-comprehend/lib/aws-sdk-comprehend/types.rb', line 102

class BatchDetectDominantLanguageItemResult < Struct.new(
  :index,
  :languages)
  SENSITIVE = []
  include Aws::Structure
end

#languagesArray<Types::DominantLanguage>

One or more DominantLanguage objects describing the dominant languages in the document.

Returns:



102
103
104
105
106
107
# File 'gems/aws-sdk-comprehend/lib/aws-sdk-comprehend/types.rb', line 102

class BatchDetectDominantLanguageItemResult < Struct.new(
  :index,
  :languages)
  SENSITIVE = []
  include Aws::Structure
end