Class: Aws::Connect::Types::RealTimeContactAnalysisTranscriptItemWithCharacterOffsets
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Connect::Types::RealTimeContactAnalysisTranscriptItemWithCharacterOffsets
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-connect/types.rb
 
Overview
Transcript representation containing Id and list of character intervals that are associated with analysis data. For example, this object within a ‘RealTimeContactAnalysisPointOfInterest` in `Category.MatchedDetails` would have character interval describing part of the text that matched category.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #character_offsets  ⇒ Types::RealTimeContactAnalysisCharacterInterval 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
List of character intervals within transcript content/text.
 - 
  
    
      #id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Transcript identifier.
 
Instance Attribute Details
#character_offsets ⇒ Types::RealTimeContactAnalysisCharacterInterval
List of character intervals within transcript content/text.
      18567 18568 18569 18570 18571 18572  | 
    
      # File 'lib/aws-sdk-connect/types.rb', line 18567 class RealTimeContactAnalysisTranscriptItemWithCharacterOffsets < Struct.new( :id, :character_offsets) SENSITIVE = [] include Aws::Structure end  | 
  
#id ⇒ String
Transcript identifier. Matches the identifier from one of the TranscriptSegments.
      18567 18568 18569 18570 18571 18572  | 
    
      # File 'lib/aws-sdk-connect/types.rb', line 18567 class RealTimeContactAnalysisTranscriptItemWithCharacterOffsets < Struct.new( :id, :character_offsets) SENSITIVE = [] include Aws::Structure end  |