Class: Aws::Comprehend::Types::TargetedSentimentEntity
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Comprehend::Types::TargetedSentimentEntity
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-comprehend/types.rb
 
Overview
Information about one of the entities found by targeted sentiment analysis.
For more information about targeted sentiment, see [Targeted sentiment].
[1]: docs.aws.amazon.com/comprehend/latest/dg/how-targeted-sentiment.html
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #descriptive_mention_index  ⇒ Array<Integer> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
One or more index into the Mentions array that provides the best name for the entity group.
 - 
  
    
      #mentions  ⇒ Array<Types::TargetedSentimentMention> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
An array of mentions of the entity in the document.
 
Instance Attribute Details
#descriptive_mention_index ⇒ Array<Integer>
One or more index into the Mentions array that provides the best name for the entity group.
      8315 8316 8317 8318 8319 8320  | 
    
      # File 'lib/aws-sdk-comprehend/types.rb', line 8315 class TargetedSentimentEntity < Struct.new( :descriptive_mention_index, :mentions) SENSITIVE = [] include Aws::Structure end  | 
  
#mentions ⇒ Array<Types::TargetedSentimentMention>
An array of mentions of the entity in the document. The array represents a co-reference group. See [ Co-reference group] for an example.
[1]: docs.aws.amazon.com/comprehend/latest/dg/how-targeted-sentiment.html#how-targeted-sentiment-values
      8315 8316 8317 8318 8319 8320  | 
    
      # File 'lib/aws-sdk-comprehend/types.rb', line 8315 class TargetedSentimentEntity < Struct.new( :descriptive_mention_index, :mentions) SENSITIVE = [] include Aws::Structure end  |