Class: Aws::LexModelsV2::Types::DialogCodeHookSettings
- Inherits:
-
Struct
- Object
- Struct
- Aws::LexModelsV2::Types::DialogCodeHookSettings
- Defined in:
- gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/types.rb
Overview
Note:
When making an API call, you may pass DialogCodeHookSettings data as a hash:
{
enabled: false, # required
}
Settings that determine the Lambda function that Amazon Lex uses for processing user responses.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#enabled ⇒ Boolean
Enables the dialog code hook so that it processes user requests.
Instance Attribute Details
#enabled ⇒ Boolean
Enables the dialog code hook so that it processes user requests.
5516 5517 5518 5519 5520 |
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/types.rb', line 5516 class DialogCodeHookSettings < Struct.new( :enabled) SENSITIVE = [] include Aws::Structure end |