Interface EvaluatedExternalModel.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<EvaluatedExternalModel.Builder,EvaluatedExternalModel>,SdkBuilder<EvaluatedExternalModel.Builder,EvaluatedExternalModel>,SdkPojo
- Enclosing class:
- EvaluatedExternalModel
public static interface EvaluatedExternalModel.Builder extends SdkPojo, CopyableBuilder<EvaluatedExternalModel.Builder,EvaluatedExternalModel>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description EvaluatedExternalModel.BuilderinputVariables(Map<String,String> inputVariables)Input variables use for generating predictions.EvaluatedExternalModel.BuildermodelEndpoint(String modelEndpoint)The endpoint of the external (Amazon Sagemaker) model.EvaluatedExternalModel.BuilderoutputVariables(Map<String,String> outputVariables)Output variables.EvaluatedExternalModel.BuilderuseEventVariables(Boolean useEventVariables)Indicates whether event variables were used to generate predictions.-
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
-
modelEndpoint
EvaluatedExternalModel.Builder modelEndpoint(String modelEndpoint)
The endpoint of the external (Amazon Sagemaker) model.
- Parameters:
modelEndpoint- The endpoint of the external (Amazon Sagemaker) model.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
useEventVariables
EvaluatedExternalModel.Builder useEventVariables(Boolean useEventVariables)
Indicates whether event variables were used to generate predictions.
- Parameters:
useEventVariables- Indicates whether event variables were used to generate predictions.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
inputVariables
EvaluatedExternalModel.Builder inputVariables(Map<String,String> inputVariables)
Input variables use for generating predictions.
- Parameters:
inputVariables- Input variables use for generating predictions.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
outputVariables
EvaluatedExternalModel.Builder outputVariables(Map<String,String> outputVariables)
Output variables.
- Parameters:
outputVariables- Output variables.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-