Show / Hide Table of Contents

Class CfnBotAliasPropsMixin.CodeHookSpecificationProperty

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

Inheritance
object
CfnBotAliasPropsMixin.CodeHookSpecificationProperty
Implements
CfnBotAliasPropsMixin.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.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

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

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

object

Remarks

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

Type union: either IResolvable or CfnBotAliasPropsMixin.ILambdaCodeHookProperty

Implements

CfnBotAliasPropsMixin.ICodeHookSpecificationProperty
Back to top Generated by DocFX