Class CfnBotAliasPropsMixin.LambdaCodeHookProperty
Specifies a Lambda function that verifies requests to a bot or fulfills the user's request to a bot.
Implements
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.Lex
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnBotAliasPropsMixin.LambdaCodeHookProperty : CfnBotAliasPropsMixin.ILambdaCodeHookProperty
Syntax (vb)
Public Class CfnBotAliasPropsMixin.LambdaCodeHookProperty Implements CfnBotAliasPropsMixin.ILambdaCodeHookProperty
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 lambdaCodeHookProperty = new LambdaCodeHookProperty {
CodeHookInterfaceVersion = "codeHookInterfaceVersion",
LambdaArn = "lambdaArn"
};
Synopsis
Constructors
| LambdaCodeHookProperty() | Specifies a Lambda function that verifies requests to a bot or fulfills the user's request to a bot. |
Properties
| CodeHookInterfaceVersion | The version of the request-response that you want Amazon Lex to use to invoke your Lambda function. |
| LambdaArn | The Amazon Resource Name (ARN) of the Lambda function. |
Constructors
LambdaCodeHookProperty()
Specifies a Lambda function that verifies requests to a bot or fulfills the user's request to a bot.
public LambdaCodeHookProperty()
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 lambdaCodeHookProperty = new LambdaCodeHookProperty {
CodeHookInterfaceVersion = "codeHookInterfaceVersion",
LambdaArn = "lambdaArn"
};
Properties
CodeHookInterfaceVersion
The version of the request-response that you want Amazon Lex to use to invoke your Lambda function.
public string? CodeHookInterfaceVersion { get; set; }
Property Value
Remarks
LambdaArn
The Amazon Resource Name (ARN) of the Lambda function.
public object? LambdaArn { get; set; }