Interface BotRecommendationResultStatistics.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<BotRecommendationResultStatistics.Builder,BotRecommendationResultStatistics>,SdkBuilder<BotRecommendationResultStatistics.Builder,BotRecommendationResultStatistics>,SdkPojo
- Enclosing class:
- BotRecommendationResultStatistics
public static interface BotRecommendationResultStatistics.Builder extends SdkPojo, CopyableBuilder<BotRecommendationResultStatistics.Builder,BotRecommendationResultStatistics>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default BotRecommendationResultStatistics.Builderintents(Consumer<IntentStatistics.Builder> intents)Statistical information about about the intents associated with the bot recommendation results.BotRecommendationResultStatistics.Builderintents(IntentStatistics intents)Statistical information about about the intents associated with the bot recommendation results.default BotRecommendationResultStatistics.BuilderslotTypes(Consumer<SlotTypeStatistics.Builder> slotTypes)Statistical information about the slot types associated with the bot recommendation results.BotRecommendationResultStatistics.BuilderslotTypes(SlotTypeStatistics slotTypes)Statistical information about the slot types associated with the bot recommendation results.-
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
-
intents
BotRecommendationResultStatistics.Builder intents(IntentStatistics intents)
Statistical information about about the intents associated with the bot recommendation results.
- Parameters:
intents- Statistical information about about the intents associated with the bot recommendation results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
intents
default BotRecommendationResultStatistics.Builder intents(Consumer<IntentStatistics.Builder> intents)
Statistical information about about the intents associated with the bot recommendation results.
This is a convenience method that creates an instance of theIntentStatistics.Builderavoiding the need to create one manually viaIntentStatistics.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tointents(IntentStatistics).- Parameters:
intents- a consumer that will call methods onIntentStatistics.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
intents(IntentStatistics)
-
slotTypes
BotRecommendationResultStatistics.Builder slotTypes(SlotTypeStatistics slotTypes)
Statistical information about the slot types associated with the bot recommendation results.
- Parameters:
slotTypes- Statistical information about the slot types associated with the bot recommendation results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
slotTypes
default BotRecommendationResultStatistics.Builder slotTypes(Consumer<SlotTypeStatistics.Builder> slotTypes)
Statistical information about the slot types associated with the bot recommendation results.
This is a convenience method that creates an instance of theSlotTypeStatistics.Builderavoiding the need to create one manually viaSlotTypeStatistics.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toslotTypes(SlotTypeStatistics).- Parameters:
slotTypes- a consumer that will call methods onSlotTypeStatistics.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
slotTypes(SlotTypeStatistics)
-
-