Class: Aws::LexModelsV2::Types::DialogCodeHookInvocationSetting
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::LexModelsV2::Types::DialogCodeHookInvocationSetting
 
- Defined in:
- gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/types.rb
Overview
Settings that specify the dialog code hook that is called by Amazon Lex at a step of the conversation.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #active  ⇒ Boolean 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Determines whether a dialog code hook is used when the intent is activated. 
- 
  
    
      #enable_code_hook_invocation  ⇒ Boolean 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Indicates whether a Lambda function should be invoked for the dialog. 
- 
  
    
      #invocation_label  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A label that indicates the dialog step from which the dialog code hook is happening. 
- 
  
    
      #post_code_hook_specification  ⇒ Types::PostDialogCodeHookInvocationSpecification 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Contains the responses and actions that Amazon Lex takes after the Lambda function is complete. 
Instance Attribute Details
#active ⇒ Boolean
Determines whether a dialog code hook is used when the intent is activated.
| 7275 7276 7277 7278 7279 7280 7281 7282 | # File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/types.rb', line 7275 class DialogCodeHookInvocationSetting < Struct.new( :enable_code_hook_invocation, :active, :invocation_label, :post_code_hook_specification) SENSITIVE = [] include Aws::Structure end | 
#enable_code_hook_invocation ⇒ Boolean
Indicates whether a Lambda function should be invoked for the dialog.
| 7275 7276 7277 7278 7279 7280 7281 7282 | # File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/types.rb', line 7275 class DialogCodeHookInvocationSetting < Struct.new( :enable_code_hook_invocation, :active, :invocation_label, :post_code_hook_specification) SENSITIVE = [] include Aws::Structure end | 
#invocation_label ⇒ String
A label that indicates the dialog step from which the dialog code hook is happening.
| 7275 7276 7277 7278 7279 7280 7281 7282 | # File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/types.rb', line 7275 class DialogCodeHookInvocationSetting < Struct.new( :enable_code_hook_invocation, :active, :invocation_label, :post_code_hook_specification) SENSITIVE = [] include Aws::Structure end | 
#post_code_hook_specification ⇒ Types::PostDialogCodeHookInvocationSpecification
Contains the responses and actions that Amazon Lex takes after the Lambda function is complete.
| 7275 7276 7277 7278 7279 7280 7281 7282 | # File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/types.rb', line 7275 class DialogCodeHookInvocationSetting < Struct.new( :enable_code_hook_invocation, :active, :invocation_label, :post_code_hook_specification) SENSITIVE = [] include Aws::Structure end |