Class CfnBot.SlotValueOverrideMapProperty
Maps a slot name to the SlotValueOverride object.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.Lex
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnBot.SlotValueOverrideMapProperty : CfnBot.ISlotValueOverrideMapProperty
Syntax (vb)
Public Class CfnBot.SlotValueOverrideMapProperty Implements CfnBot.ISlotValueOverrideMapProperty
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;
SlotValueOverrideProperty slotValueOverrideProperty_;
var slotValueOverrideMapProperty = new SlotValueOverrideMapProperty {
SlotName = "slotName",
SlotValueOverride = new SlotValueOverrideProperty {
Shape = "shape",
Value = new SlotValueProperty {
InterpretedValue = "interpretedValue"
},
Values = new [] { slotValueOverrideProperty_ }
}
};
Synopsis
Constructors
SlotValueOverrideMapProperty() | Maps a slot name to the SlotValueOverride object. |
Properties
SlotName | The name of the slot. |
SlotValueOverride | The SlotValueOverride object to which the slot name will be mapped. |
Constructors
SlotValueOverrideMapProperty()
Maps a slot name to the SlotValueOverride object.
public SlotValueOverrideMapProperty()
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;
SlotValueOverrideProperty slotValueOverrideProperty_;
var slotValueOverrideMapProperty = new SlotValueOverrideMapProperty {
SlotName = "slotName",
SlotValueOverride = new SlotValueOverrideProperty {
Shape = "shape",
Value = new SlotValueProperty {
InterpretedValue = "interpretedValue"
},
Values = new [] { slotValueOverrideProperty_ }
}
};
Properties
SlotName
The name of the slot.
public string? SlotName { get; set; }
Property Value
Remarks
SlotValueOverride
The SlotValueOverride object to which the slot name will be mapped.
public object? SlotValueOverride { get; set; }