Class CfnBot.SlotDefaultValueProperty
Specifies the default value to use when a user doesn't provide a value for a slot.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.Lex
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnBot.SlotDefaultValueProperty : CfnBot.ISlotDefaultValueProperty
Syntax (vb)
Public Class CfnBot.SlotDefaultValueProperty Implements CfnBot.ISlotDefaultValueProperty
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.AWS.Lex;
var slotDefaultValueProperty = new SlotDefaultValueProperty {
DefaultValue = "defaultValue"
};
Synopsis
Constructors
| SlotDefaultValueProperty() | Specifies the default value to use when a user doesn't provide a value for a slot. |
Properties
| DefaultValue | The default value to use when a user doesn't provide a value for a slot. |
Constructors
SlotDefaultValueProperty()
Specifies the default value to use when a user doesn't provide a value for a slot.
public SlotDefaultValueProperty()
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.AWS.Lex;
var slotDefaultValueProperty = new SlotDefaultValueProperty {
DefaultValue = "defaultValue"
};
Properties
DefaultValue
The default value to use when a user doesn't provide a value for a slot.
public string DefaultValue { get; set; }