Interface CfnBot.LambdaCodeHookProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnBot.LambdaCodeHookProperty.Jsii$Proxy
Enclosing class:
CfnBot

@Stability(Stable) public static interface CfnBot.LambdaCodeHookProperty extends software.amazon.jsii.JsiiSerializable
Specifies a Lambda function that verifies requests to a bot or fulfills the user's request to a bot.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.lex.*;
 LambdaCodeHookProperty lambdaCodeHookProperty = LambdaCodeHookProperty.builder()
         .codeHookInterfaceVersion("codeHookInterfaceVersion")
         .lambdaArn("lambdaArn")
         .build();
 

See Also: