Class: Aws::Comprehend::Types::BatchDetectSentimentItemResult

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#indexInteger

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

Returns:

  • (Integer)


295
296
297
298
299
300
301
# File 'lib/aws-sdk-comprehend/types.rb', line 295

class BatchDetectSentimentItemResult < Struct.new(
  :index,
  :sentiment,
  :sentiment_score)
  SENSITIVE = []
  include Aws::Structure
end

#sentimentString

The sentiment detected in the document.

Returns:

  • (String)


295
296
297
298
299
300
301
# File 'lib/aws-sdk-comprehend/types.rb', line 295

class BatchDetectSentimentItemResult < Struct.new(
  :index,
  :sentiment,
  :sentiment_score)
  SENSITIVE = []
  include Aws::Structure
end

#sentiment_scoreTypes::SentimentScore

The level of confidence that Amazon Comprehend has in the accuracy of its sentiment detection.



295
296
297
298
299
300
301
# File 'lib/aws-sdk-comprehend/types.rb', line 295

class BatchDetectSentimentItemResult < Struct.new(
  :index,
  :sentiment,
  :sentiment_score)
  SENSITIVE = []
  include Aws::Structure
end