Class: Aws::Comprehend::Types::BatchDetectSyntaxItemResult

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 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)


361
362
363
364
365
366
# File 'gems/aws-sdk-comprehend/lib/aws-sdk-comprehend/types.rb', line 361

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

#syntax_tokensArray<Types::SyntaxToken>

The syntax tokens for the words in the document, one token for each word.

Returns:



361
362
363
364
365
366
# File 'gems/aws-sdk-comprehend/lib/aws-sdk-comprehend/types.rb', line 361

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