Interface IntentOverride.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<IntentOverride.Builder,IntentOverride>,SdkBuilder<IntentOverride.Builder,IntentOverride>,SdkPojo
- Enclosing class:
- IntentOverride
public static interface IntentOverride.Builder extends SdkPojo, CopyableBuilder<IntentOverride.Builder,IntentOverride>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IntentOverride.Buildername(String name)The name of the intent.IntentOverride.Builderslots(Map<String,SlotValueOverride> slots)A map of all of the slot value overrides for the intent.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
name
IntentOverride.Builder name(String name)
The name of the intent. Only required when you're switching intents.
- Parameters:
name- The name of the intent. Only required when you're switching intents.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
slots
IntentOverride.Builder slots(Map<String,SlotValueOverride> slots)
A map of all of the slot value overrides for the intent. The name of the slot maps to the value of the slot. Slots that are not included in the map aren't overridden.
- Parameters:
slots- A map of all of the slot value overrides for the intent. The name of the slot maps to the value of the slot. Slots that are not included in the map aren't overridden.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-