Interface CfnBotPropsMixin.ISlotTypeValueProperty
Each slot type can have a set of values.
Namespace: Amazon.CDK.Mixins.Preview.AWS.Lex.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public interface CfnBotPropsMixin.ISlotTypeValueProperty
Syntax (vb)
Public Interface CfnBotPropsMixin.ISlotTypeValueProperty
Remarks
Each SlotTypeValue represents a value that the slot type can take.
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 slotTypeValueProperty = new SlotTypeValueProperty {
SampleValue = new SampleValueProperty {
Value = "value"
},
Synonyms = new [] { new SampleValueProperty {
Value = "value"
} }
};
Synopsis
Properties
| SampleValue | The value of the slot type entry. |
| Synonyms | Additional values related to the slot type entry. |
Properties
SampleValue
The value of the slot type entry.
object? SampleValue { get; }
Property Value
Remarks
Synonyms
Additional values related to the slot type entry.
object? Synonyms { get; }