Class CfnBotAliasPropsMixin.CodeHookSpecificationProperty
Contains information about code hooks that Amazon Lex calls during a conversation.
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.Lex.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnBotAliasPropsMixin.CodeHookSpecificationProperty : CfnBotAliasPropsMixin.ICodeHookSpecificationProperty
Syntax (vb)
Public Class CfnBotAliasPropsMixin.CodeHookSpecificationProperty Implements CfnBotAliasPropsMixin.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.Mixins.Preview.AWS.Lex.Mixins;
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.Mixins.Preview.AWS.Lex.Mixins;
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; }