Interface UpdateMlModelRequest.Builder
- All Superinterfaces:
AwsRequest.Builder
,Buildable
,CopyableBuilder<UpdateMlModelRequest.Builder,
,UpdateMlModelRequest> MachineLearningRequest.Builder
,SdkBuilder<UpdateMlModelRequest.Builder,
,UpdateMlModelRequest> SdkPojo
,SdkRequest.Builder
- Enclosing class:
UpdateMlModelRequest
public static interface UpdateMlModelRequest.Builder
extends MachineLearningRequest.Builder, SdkPojo, CopyableBuilder<UpdateMlModelRequest.Builder,UpdateMlModelRequest>
-
Method Summary
Modifier and TypeMethodDescriptionThe ID assigned to theMLModel
during creation.mlModelName
(String mlModelName) A user-supplied name or description of theMLModel
.overrideConfiguration
(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer) Add an optional request override configuration.overrideConfiguration
(AwsRequestOverrideConfiguration overrideConfiguration) Add an optional request override configuration.scoreThreshold
(Float scoreThreshold) TheScoreThreshold
used in binary classificationMLModel
that marks the boundary between a positive prediction and a negative prediction.Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
Methods inherited from interface software.amazon.awssdk.services.machinelearning.model.MachineLearningRequest.Builder
build
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
Method Details
-
mlModelId
The ID assigned to the
MLModel
during creation.- Parameters:
mlModelId
- The ID assigned to theMLModel
during creation.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
mlModelName
A user-supplied name or description of the
MLModel
.- Parameters:
mlModelName
- A user-supplied name or description of theMLModel
.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
scoreThreshold
The
ScoreThreshold
used in binary classificationMLModel
that marks the boundary between a positive prediction and a negative prediction.Output values greater than or equal to the
ScoreThreshold
receive a positive result from theMLModel
, such astrue
. Output values less than theScoreThreshold
receive a negative response from theMLModel
, such asfalse
.- Parameters:
scoreThreshold
- TheScoreThreshold
used in binary classificationMLModel
that marks the boundary between a positive prediction and a negative prediction.Output values greater than or equal to the
ScoreThreshold
receive a positive result from theMLModel
, such astrue
. Output values less than theScoreThreshold
receive a negative response from theMLModel
, such asfalse
.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideConfiguration
UpdateMlModelRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration) Description copied from interface:AwsRequest.Builder
Add an optional request override configuration.- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
- Parameters:
overrideConfiguration
- The override configuration.- Returns:
- This object for method chaining.
-
overrideConfiguration
UpdateMlModelRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer) Description copied from interface:AwsRequest.Builder
Add an optional request override configuration.- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
- Parameters:
builderConsumer
- AConsumer
to which an emptyAwsRequestOverrideConfiguration.Builder
will be given.- Returns:
- This object for method chaining.
-