Class: Aws::LexModelsV2::Types::UtteranceInputSpecification
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::LexModelsV2::Types::UtteranceInputSpecification
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-lexmodelsv2/types.rb
 
Overview
Contains information about input of an utterance.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #audio_input  ⇒ Types::UtteranceAudioInputSpecification 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Contains information about the audio input for an utterance.
 - 
  
    
      #text_input  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A text input transcription of the utterance.
 
Instance Attribute Details
#audio_input ⇒ Types::UtteranceAudioInputSpecification
Contains information about the audio input for an utterance.
      15701 15702 15703 15704 15705 15706  | 
    
      # File 'lib/aws-sdk-lexmodelsv2/types.rb', line 15701 class UtteranceInputSpecification < Struct.new( :text_input, :audio_input) SENSITIVE = [] include Aws::Structure end  | 
  
#text_input ⇒ String
A text input transcription of the utterance. It is only applicable for test-sets containing text data.
      15701 15702 15703 15704 15705 15706  | 
    
      # File 'lib/aws-sdk-lexmodelsv2/types.rb', line 15701 class UtteranceInputSpecification < Struct.new( :text_input, :audio_input) SENSITIVE = [] include Aws::Structure end  |