Class CfnBotPropsMixin.CodeHookSpecificationProperty
Contains information about code hooks that Amazon Lex calls during a conversation.
Implements
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.Lex
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnBotPropsMixin.CodeHookSpecificationProperty : CfnBotPropsMixin.ICodeHookSpecificationProperty
Syntax (vb)
Public Class CfnBotPropsMixin.CodeHookSpecificationProperty Implements CfnBotPropsMixin.ICodeHookSpecificationProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.Lex;
var codeHookSpecificationProperty = new CodeHookSpecificationProperty {
LambdaCodeHook = new LambdaCodeHookProperty {
CodeHookInterfaceVersion = "codeHookInterfaceVersion",
LambdaArn = "lambdaArn"
}
};
Synopsis
Constructors
| CodeHookSpecificationProperty() | Contains information about code hooks that Amazon Lex calls during a conversation. |
Properties
| LambdaCodeHook | Specifies a Lambda function that verifies requests to a bot or fulfills the user's request to a bot. |
Constructors
CodeHookSpecificationProperty()
Contains information about code hooks that Amazon Lex calls during a conversation.
public CodeHookSpecificationProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.Lex;
var codeHookSpecificationProperty = new CodeHookSpecificationProperty {
LambdaCodeHook = new LambdaCodeHookProperty {
CodeHookInterfaceVersion = "codeHookInterfaceVersion",
LambdaArn = "lambdaArn"
}
};
Properties
LambdaCodeHook
Specifies a Lambda function that verifies requests to a bot or fulfills the user's request to a bot.
public object? LambdaCodeHook { get; set; }