Class CfnBotPropsMixin.DialogActionProperty
Defines the action that the bot executes at runtime when the conversation reaches this step.
Implements
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.Lex.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnBotPropsMixin.DialogActionProperty : CfnBotPropsMixin.IDialogActionProperty
Syntax (vb)
Public Class CfnBotPropsMixin.DialogActionProperty Implements CfnBotPropsMixin.IDialogActionProperty
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 dialogActionProperty = new DialogActionProperty {
SlotToElicit = "slotToElicit",
SuppressNextMessage = false,
Type = "type"
};
Synopsis
Constructors
| DialogActionProperty() | Defines the action that the bot executes at runtime when the conversation reaches this step. |
Properties
| SlotToElicit | If the dialog action is |
| SuppressNextMessage | When true the next message for the intent is not used. |
| Type | The action that the bot should execute. |
Constructors
DialogActionProperty()
Defines the action that the bot executes at runtime when the conversation reaches this step.
public DialogActionProperty()
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 dialogActionProperty = new DialogActionProperty {
SlotToElicit = "slotToElicit",
SuppressNextMessage = false,
Type = "type"
};
Properties
SlotToElicit
If the dialog action is ElicitSlot , defines the slot to elicit from the user.
public string? SlotToElicit { get; set; }
Property Value
Remarks
SuppressNextMessage
When true the next message for the intent is not used.
public object? SuppressNextMessage { get; set; }
Property Value
Remarks
Type
The action that the bot should execute.
public string? Type { get; set; }