Show / Hide Table of Contents

Class CfnBotAliasPropsMixin.LambdaCodeHookProperty

Specifies a Lambda function that verifies requests to a bot or fulfills the user's request to a bot.

Inheritance
object
CfnBotAliasPropsMixin.LambdaCodeHookProperty
Implements
CfnBotAliasPropsMixin.ILambdaCodeHookProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-botalias-lambdacodehook.html

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-botalias-lambdacodehook.html

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-botalias-lambdacodehook.html#cfn-lex-botalias-lambdacodehook-codehookinterfaceversion

LambdaArn

The Amazon Resource Name (ARN) of the Lambda function.

public object? LambdaArn { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-botalias-lambdacodehook.html#cfn-lex-botalias-lambdacodehook-lambdaarn

Type union: either string or IFunctionRef

Implements

CfnBotAliasPropsMixin.ILambdaCodeHookProperty
Back to top Generated by DocFX