Class: Aws::LexModelBuildingService::Types::CodeHook
- Inherits:
-
Struct
- Object
- Struct
- Aws::LexModelBuildingService::Types::CodeHook
- Defined in:
- gems/aws-sdk-lexmodelbuildingservice/lib/aws-sdk-lexmodelbuildingservice/types.rb
Overview
Specifies a Lambda function that verifies requests to a bot or fulfills the user's request to a bot..
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#message_version ⇒ String
The version of the request-response that you want Amazon Lex to use to invoke your Lambda function.
-
#uri ⇒ String
The Amazon Resource Name (ARN) of the Lambda function.
Instance Attribute Details
#message_version ⇒ String
The version of the request-response that you want Amazon Lex to use to invoke your Lambda function. For more information, see using-lambda.
287 288 289 290 291 292 |
# File 'gems/aws-sdk-lexmodelbuildingservice/lib/aws-sdk-lexmodelbuildingservice/types.rb', line 287 class CodeHook < Struct.new( :uri, :message_version) SENSITIVE = [] include Aws::Structure end |