Class: Aws::LexModelsV2::Types::DialogAction
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::LexModelsV2::Types::DialogAction
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-lexmodelsv2/types.rb
 
Overview
Defines the action that the bot executes at runtime when the conversation reaches this step.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #slot_to_elicit  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
If the dialog action is ‘ElicitSlot`, defines the slot to elicit from the user.
 - 
  
    
      #suppress_next_message  ⇒ Boolean 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
When true the next message for the intent is not used.
 - 
  
    
      #type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The action that the bot should execute.
 
Instance Attribute Details
#slot_to_elicit ⇒ String
If the dialog action is ‘ElicitSlot`, defines the slot to elicit from the user.
      7200 7201 7202 7203 7204 7205 7206  | 
    
      # File 'lib/aws-sdk-lexmodelsv2/types.rb', line 7200 class DialogAction < Struct.new( :type, :slot_to_elicit, :suppress_next_message) SENSITIVE = [] include Aws::Structure end  | 
  
#suppress_next_message ⇒ Boolean
When true the next message for the intent is not used.
      7200 7201 7202 7203 7204 7205 7206  | 
    
      # File 'lib/aws-sdk-lexmodelsv2/types.rb', line 7200 class DialogAction < Struct.new( :type, :slot_to_elicit, :suppress_next_message) SENSITIVE = [] include Aws::Structure end  | 
  
#type ⇒ String
The action that the bot should execute.
      7200 7201 7202 7203 7204 7205 7206  | 
    
      # File 'lib/aws-sdk-lexmodelsv2/types.rb', line 7200 class DialogAction < Struct.new( :type, :slot_to_elicit, :suppress_next_message) SENSITIVE = [] include Aws::Structure end  |