Interface EvaluationConfig.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<EvaluationConfig.Builder,EvaluationConfig>,SdkBuilder<EvaluationConfig.Builder,EvaluationConfig>,SdkPojo
- Enclosing class:
- EvaluationConfig
public static interface EvaluationConfig.Builder extends SdkPojo, CopyableBuilder<EvaluationConfig.Builder,EvaluationConfig>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default EvaluationConfig.Builderautomated(Consumer<AutomatedEvaluationConfig.Builder> automated)Used to specify an automated model evaluation job.EvaluationConfig.Builderautomated(AutomatedEvaluationConfig automated)Used to specify an automated model evaluation job.default EvaluationConfig.Builderhuman(Consumer<HumanEvaluationConfig.Builder> human)Used to specify a model evaluation job that uses human workers.SeeHumanEvaluationConfigto view the required parameters.EvaluationConfig.Builderhuman(HumanEvaluationConfig human)Used to specify a model evaluation job that uses human workers.SeeHumanEvaluationConfigto view the required parameters.-
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
-
automated
EvaluationConfig.Builder automated(AutomatedEvaluationConfig automated)
Used to specify an automated model evaluation job. See
AutomatedEvaluationConfigto view the required parameters.- Parameters:
automated- Used to specify an automated model evaluation job. SeeAutomatedEvaluationConfigto view the required parameters.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
automated
default EvaluationConfig.Builder automated(Consumer<AutomatedEvaluationConfig.Builder> automated)
Used to specify an automated model evaluation job. See
This is a convenience method that creates an instance of theAutomatedEvaluationConfigto view the required parameters.AutomatedEvaluationConfig.Builderavoiding the need to create one manually viaAutomatedEvaluationConfig.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toautomated(AutomatedEvaluationConfig).- Parameters:
automated- a consumer that will call methods onAutomatedEvaluationConfig.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
automated(AutomatedEvaluationConfig)
-
human
EvaluationConfig.Builder human(HumanEvaluationConfig human)
Used to specify a model evaluation job that uses human workers.See
HumanEvaluationConfigto view the required parameters.- Parameters:
human- Used to specify a model evaluation job that uses human workers.SeeHumanEvaluationConfigto view the required parameters.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
human
default EvaluationConfig.Builder human(Consumer<HumanEvaluationConfig.Builder> human)
Used to specify a model evaluation job that uses human workers.See
This is a convenience method that creates an instance of theHumanEvaluationConfigto view the required parameters.HumanEvaluationConfig.Builderavoiding the need to create one manually viaHumanEvaluationConfig.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tohuman(HumanEvaluationConfig).- Parameters:
human- a consumer that will call methods onHumanEvaluationConfig.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
human(HumanEvaluationConfig)
-
-