Interface CfnBotPropsMixin.SlotValueOverrideMapProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnBotPropsMixin.SlotValueOverrideMapProperty.Jsii$Proxy
- Enclosing class:
CfnBotPropsMixin
@Stability(Stable)
public static interface CfnBotPropsMixin.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.cfnpropertymixins.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 forCfnBotPropsMixin.SlotValueOverrideMapPropertystatic final classAn implementation forCfnBotPropsMixin.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
IResolvableorCfnBotPropsMixin.SlotValueOverrideProperty- See Also:
-
builder
-