Interface CfnBotAlias.LambdaCodeHookProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnBotAlias.LambdaCodeHookProperty.Jsii$Proxy
- Enclosing class:
CfnBotAlias
@Stability(Stable)
public static interface CfnBotAlias.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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnBotAlias.LambdaCodeHookProperty
static final class
An implementation forCfnBotAlias.LambdaCodeHookProperty
-
Method Summary
Modifier 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
-
getCodeHookInterfaceVersion
The version of the request-response that you want Amazon Lex to use to invoke your Lambda function. -
getLambdaArn
The Amazon Resource Name (ARN) of the Lambda function. -
builder
-