Class: Aws::LexModelBuildingService::Types::CodeHook
- Inherits:
-
Struct
- Object
- Struct
- Aws::LexModelBuildingService::Types::CodeHook
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-lexmodelbuildingservice/types.rb
Overview
Note:
When making an API call, you may pass CodeHook data as a hash:
{
uri: "LambdaARN", # required
message_version: "MessageVersion", # required
}
Specifies a Lambda function that verifies requests to a bot or fulfills the user’s request to a bot..
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.
234 235 236 237 238 |
# File 'lib/aws-sdk-lexmodelbuildingservice/types.rb', line 234 class CodeHook < Struct.new( :uri, :message_version) include Aws::Structure end |
#uri ⇒ String
The Amazon Resource Name (ARN) of the Lambda function.
234 235 236 237 238 |
# File 'lib/aws-sdk-lexmodelbuildingservice/types.rb', line 234 class CodeHook < Struct.new( :uri, :message_version) include Aws::Structure end |