Interface CfnBot.SlotValueOverrideMapProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnBot.SlotValueOverrideMapProperty.Jsii$Proxy
- Enclosing class:
CfnBot
@Stability(Stable)
public static interface CfnBot.SlotValueOverrideMapProperty
extends software.amazon.jsii.JsiiSerializable
Maps a slot name to the SlotValueOverride object.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.lex.*;
SlotValueOverrideProperty slotValueOverrideProperty_;
SlotValueOverrideMapProperty slotValueOverrideMapProperty = SlotValueOverrideMapProperty.builder()
.slotName("slotName")
.slotValueOverride(SlotValueOverrideProperty.builder()
.shape("shape")
.value(SlotValueProperty.builder()
.interpretedValue("interpretedValue")
.build())
.values(List.of(slotValueOverrideProperty_))
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnBot.SlotValueOverrideMapPropertystatic final classAn implementation forCfnBot.SlotValueOverrideMapProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getSlotName
The name of the slot.- See Also:
-
getSlotValueOverride
The SlotValueOverride object to which the slot name will be mapped.Returns union: either
IResolvableorCfnBot.SlotValueOverrideProperty- See Also:
-
builder
-