Class: Aws::Connect::Types::TranscriptCriteria
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Connect::Types::TranscriptCriteria
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-connect/types.rb
 
Overview
A structure that defines search criteria base on words or phrases, participants in the Contact Lens conversational analytics transcript.
Constant Summary collapse
- SENSITIVE =
 [:search_text]
Instance Attribute Summary collapse
- 
  
    
      #match_type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The match type combining search criteria using multiple search texts in a transcript criteria.
 - 
  
    
      #participant_role  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The participant role in a transcript.
 - 
  
    
      #search_text  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The words or phrases used to search within a transcript.
 
Instance Attribute Details
#match_type ⇒ String
The match type combining search criteria using multiple search texts in a transcript criteria.
      23901 23902 23903 23904 23905 23906 23907  | 
    
      # File 'lib/aws-sdk-connect/types.rb', line 23901 class TranscriptCriteria < Struct.new( :participant_role, :search_text, :match_type) SENSITIVE = [:search_text] include Aws::Structure end  | 
  
#participant_role ⇒ String
The participant role in a transcript
      23901 23902 23903 23904 23905 23906 23907  | 
    
      # File 'lib/aws-sdk-connect/types.rb', line 23901 class TranscriptCriteria < Struct.new( :participant_role, :search_text, :match_type) SENSITIVE = [:search_text] include Aws::Structure end  | 
  
#search_text ⇒ Array<String>
The words or phrases used to search within a transcript.
      23901 23902 23903 23904 23905 23906 23907  | 
    
      # File 'lib/aws-sdk-connect/types.rb', line 23901 class TranscriptCriteria < Struct.new( :participant_role, :search_text, :match_type) SENSITIVE = [:search_text] include Aws::Structure end  |