Class: Aws::Comprehend::Types::BatchDetectKeyPhrasesItemResult
- Inherits:
-
Struct
- Object
- Struct
- Aws::Comprehend::Types::BatchDetectKeyPhrasesItemResult
- 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.
-
#key_phrases ⇒ Array<Types::KeyPhrase>
One or more KeyPhrase objects, one for each key phrase detected in the document.
Instance Attribute Details
#index ⇒ Integer
The zero-based index of the document in the input list.
226 227 228 229 230 231 |
# File 'lib/aws-sdk-comprehend/types.rb', line 226 class BatchDetectKeyPhrasesItemResult < Struct.new( :index, :key_phrases) SENSITIVE = [] include Aws::Structure end |
#key_phrases ⇒ Array<Types::KeyPhrase>
One or more KeyPhrase objects, one for each key phrase detected in the document.
226 227 228 229 230 231 |
# File 'lib/aws-sdk-comprehend/types.rb', line 226 class BatchDetectKeyPhrasesItemResult < Struct.new( :index, :key_phrases) SENSITIVE = [] include Aws::Structure end |