Interface CfnBot.CodeHookSpecificationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnBot.CodeHookSpecificationProperty.Jsii$Proxy
- Enclosing class:
- CfnBot
@Stability(Stable)
public static interface CfnBot.CodeHookSpecificationProperty
extends software.amazon.jsii.JsiiSerializable
Contains information about code hooks that Amazon Lex calls during a conversation.
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.*;
CodeHookSpecificationProperty codeHookSpecificationProperty = CodeHookSpecificationProperty.builder()
.lambdaCodeHook(LambdaCodeHookProperty.builder()
.codeHookInterfaceVersion("codeHookInterfaceVersion")
.lambdaArn("lambdaArn")
.build())
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnBot.CodeHookSpecificationPropertystatic final classAn implementation forCfnBot.CodeHookSpecificationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()Specifies a Lambda function that verifies requests to a bot or fulfills the user's request to a bot.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getLambdaCodeHook
Specifies a Lambda function that verifies requests to a bot or fulfills the user's request to a bot. -
builder
-