Class: Aws::Comprehend::Types::BatchDetectSyntaxItemResult
- Inherits:
-
Struct
- Object
- Struct
- Aws::Comprehend::Types::BatchDetectSyntaxItemResult
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-comprehend/types.rb
Overview
The result of calling the operation. The operation returns one object 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.
-
#syntax_tokens ⇒ Array<Types::SyntaxToken>
The syntax tokens for the words in the document, one token for each word.
Instance Attribute Details
#index ⇒ Integer
The zero-based index of the document in the input list.
361 362 363 364 365 366 |
# File 'lib/aws-sdk-comprehend/types.rb', line 361 class BatchDetectSyntaxItemResult < Struct.new( :index, :syntax_tokens) SENSITIVE = [] include Aws::Structure end |
#syntax_tokens ⇒ Array<Types::SyntaxToken>
The syntax tokens for the words in the document, one token for each word.
361 362 363 364 365 366 |
# File 'lib/aws-sdk-comprehend/types.rb', line 361 class BatchDetectSyntaxItemResult < Struct.new( :index, :syntax_tokens) SENSITIVE = [] include Aws::Structure end |