Class CfnBotPropsMixin.ElicitationCodeHookInvocationSettingProperty
Settings that specify the dialog code hook that is called by Amazon Lex between eliciting slot values.
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.Lex.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnBotPropsMixin.ElicitationCodeHookInvocationSettingProperty : CfnBotPropsMixin.IElicitationCodeHookInvocationSettingProperty
Syntax (vb)
Public Class CfnBotPropsMixin.ElicitationCodeHookInvocationSettingProperty Implements CfnBotPropsMixin.IElicitationCodeHookInvocationSettingProperty
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 elicitationCodeHookInvocationSettingProperty = new ElicitationCodeHookInvocationSettingProperty {
EnableCodeHookInvocation = false,
InvocationLabel = "invocationLabel"
};
Synopsis
Constructors
| ElicitationCodeHookInvocationSettingProperty() | Settings that specify the dialog code hook that is called by Amazon Lex between eliciting slot values. |
Properties
| EnableCodeHookInvocation | Indicates whether a Lambda function should be invoked for the dialog. |
| InvocationLabel | A label that indicates the dialog step from which the dialog code hook is happening. |
Constructors
ElicitationCodeHookInvocationSettingProperty()
Settings that specify the dialog code hook that is called by Amazon Lex between eliciting slot values.
public ElicitationCodeHookInvocationSettingProperty()
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 elicitationCodeHookInvocationSettingProperty = new ElicitationCodeHookInvocationSettingProperty {
EnableCodeHookInvocation = false,
InvocationLabel = "invocationLabel"
};
Properties
EnableCodeHookInvocation
Indicates whether a Lambda function should be invoked for the dialog.
public object? EnableCodeHookInvocation { get; set; }
Property Value
Remarks
InvocationLabel
A label that indicates the dialog step from which the dialog code hook is happening.
public string? InvocationLabel { get; set; }