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:
- 
Nested Class SummaryNested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnBot.LambdaCodeHookPropertystatic final classAn implementation forCfnBot.LambdaCodeHookProperty
- 
Method SummaryModifier and TypeMethodDescriptionbuilder()The version of the request-response that you want Amazon Lex to use to invoke your Lambda function.The Amazon Resource Name (ARN) of the Lambda function.Methods inherited from interface software.amazon.jsii.JsiiSerializable$jsii$toJson
- 
Method Details- 
getCodeHookInterfaceVersionThe version of the request-response that you want Amazon Lex to use to invoke your Lambda function.- See Also:
 
- 
getLambdaArnThe Amazon Resource Name (ARN) of the Lambda function.- See Also:
 
- 
builder
 
-