Class: Aws::LexModelsV2::Types::DeleteUtterancesRequest
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::LexModelsV2::Types::DeleteUtterancesRequest
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-lexmodelsv2/types.rb
 
Overview
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #bot_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The unique identifier of the bot that contains the utterances.
 - 
  
    
      #locale_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The identifier of the language and locale where the utterances were collected.
 - 
  
    
      #session_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The unique identifier of the session with the user.
 
Instance Attribute Details
#bot_id ⇒ String
The unique identifier of the bot that contains the utterances.
      5590 5591 5592 5593 5594 5595 5596  | 
    
      # File 'lib/aws-sdk-lexmodelsv2/types.rb', line 5590 class DeleteUtterancesRequest < Struct.new( :bot_id, :locale_id, :session_id) SENSITIVE = [] include Aws::Structure end  | 
  
#locale_id ⇒ String
The identifier of the language and locale where the utterances were collected. The string must match one of the supported locales. For more information, see [Supported languages].
      5590 5591 5592 5593 5594 5595 5596  | 
    
      # File 'lib/aws-sdk-lexmodelsv2/types.rb', line 5590 class DeleteUtterancesRequest < Struct.new( :bot_id, :locale_id, :session_id) SENSITIVE = [] include Aws::Structure end  | 
  
#session_id ⇒ String
The unique identifier of the session with the user. The ID is returned in the response from the [RecognizeText] and
- RecognizeUtterance][2
 - 
operations.
 
[1]: docs.aws.amazon.com/lexv2/latest/APIReference/API_runtime_RecognizeText.html [2]: docs.aws.amazon.com/lexv2/latest/APIReference/API_runtime_RecognizeUtterance.html
      5590 5591 5592 5593 5594 5595 5596  | 
    
      # File 'lib/aws-sdk-lexmodelsv2/types.rb', line 5590 class DeleteUtterancesRequest < Struct.new( :bot_id, :locale_id, :session_id) SENSITIVE = [] include Aws::Structure end  |