Interface PredictionConfiguration.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<PredictionConfiguration.Builder,PredictionConfiguration>,SdkBuilder<PredictionConfiguration.Builder,PredictionConfiguration>,SdkPojo
- Enclosing class:
- PredictionConfiguration
public static interface PredictionConfiguration.Builder extends SdkPojo, CopyableBuilder<PredictionConfiguration.Builder,PredictionConfiguration>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default PredictionConfiguration.BuilderbusinessNameGeneration(Consumer<BusinessNameGenerationConfiguration.Builder> businessNameGeneration)The business name generation mechanism.PredictionConfiguration.BuilderbusinessNameGeneration(BusinessNameGenerationConfiguration businessNameGeneration)The business name generation mechanism.-
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
-
businessNameGeneration
PredictionConfiguration.Builder businessNameGeneration(BusinessNameGenerationConfiguration businessNameGeneration)
The business name generation mechanism.
- Parameters:
businessNameGeneration- The business name generation mechanism.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
businessNameGeneration
default PredictionConfiguration.Builder businessNameGeneration(Consumer<BusinessNameGenerationConfiguration.Builder> businessNameGeneration)
The business name generation mechanism.
This is a convenience method that creates an instance of theBusinessNameGenerationConfiguration.Builderavoiding the need to create one manually viaBusinessNameGenerationConfiguration.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tobusinessNameGeneration(BusinessNameGenerationConfiguration).- Parameters:
businessNameGeneration- a consumer that will call methods onBusinessNameGenerationConfiguration.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
businessNameGeneration(BusinessNameGenerationConfiguration)
-
-