Interface CfnBotAlias.CodeHookSpecificationProperty

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

@Stability(Stable) public static interface CfnBotAlias.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();