Class: Aws::Comprehend::Types::BatchDetectKeyPhrasesItemResult

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)


226
227
228
229
230
231
# File 'gems/aws-sdk-comprehend/lib/aws-sdk-comprehend/types.rb', line 226

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

#key_phrasesArray<Types::KeyPhrase>

One or more KeyPhrase objects, one for each key phrase detected in the document.

Returns:



226
227
228
229
230
231
# File 'gems/aws-sdk-comprehend/lib/aws-sdk-comprehend/types.rb', line 226

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