Show / Hide Table of Contents

Class CfnBotPropsMixin.CodeHookSpecificationProperty

Contains information about code hooks that Amazon Lex calls during a conversation.

Inheritance
object
CfnBotPropsMixin.CodeHookSpecificationProperty
Implements
CfnBotPropsMixin.ICodeHookSpecificationProperty
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 CfnBotPropsMixin.CodeHookSpecificationProperty : CfnBotPropsMixin.ICodeHookSpecificationProperty
Syntax (vb)
Public Class CfnBotPropsMixin.CodeHookSpecificationProperty Implements CfnBotPropsMixin.ICodeHookSpecificationProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-codehookspecification.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 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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-codehookspecification.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 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; }
Property Value

object

Remarks

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

Type union: either IResolvable or CfnBotPropsMixin.ILambdaCodeHookProperty

Implements

CfnBotPropsMixin.ICodeHookSpecificationProperty
Back to top Generated by DocFX