Interface BotRecommendationResults.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<BotRecommendationResults.Builder,BotRecommendationResults>,SdkBuilder<BotRecommendationResults.Builder,BotRecommendationResults>,SdkPojo
- Enclosing class:
- BotRecommendationResults
public static interface BotRecommendationResults.Builder extends SdkPojo, CopyableBuilder<BotRecommendationResults.Builder,BotRecommendationResults>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description BotRecommendationResults.BuilderassociatedTranscriptsUrl(String associatedTranscriptsUrl)The presigned url link of the associated transcript.BotRecommendationResults.BuilderbotLocaleExportUrl(String botLocaleExportUrl)The presigned URL link of the recommended bot definition.default BotRecommendationResults.Builderstatistics(Consumer<BotRecommendationResultStatistics.Builder> statistics)The statistical summary of the bot recommendation results.BotRecommendationResults.Builderstatistics(BotRecommendationResultStatistics statistics)The statistical summary of 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
-
botLocaleExportUrl
BotRecommendationResults.Builder botLocaleExportUrl(String botLocaleExportUrl)
The presigned URL link of the recommended bot definition.
- Parameters:
botLocaleExportUrl- The presigned URL link of the recommended bot definition.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
associatedTranscriptsUrl
BotRecommendationResults.Builder associatedTranscriptsUrl(String associatedTranscriptsUrl)
The presigned url link of the associated transcript.
- Parameters:
associatedTranscriptsUrl- The presigned url link of the associated transcript.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
statistics
BotRecommendationResults.Builder statistics(BotRecommendationResultStatistics statistics)
The statistical summary of the bot recommendation results.
- Parameters:
statistics- The statistical summary of the bot recommendation results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
statistics
default BotRecommendationResults.Builder statistics(Consumer<BotRecommendationResultStatistics.Builder> statistics)
The statistical summary of the bot recommendation results.
This is a convenience method that creates an instance of theBotRecommendationResultStatistics.Builderavoiding the need to create one manually viaBotRecommendationResultStatistics.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tostatistics(BotRecommendationResultStatistics).- Parameters:
statistics- a consumer that will call methods onBotRecommendationResultStatistics.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
statistics(BotRecommendationResultStatistics)
-
-