Interface MLPaymentConfig.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<MLPaymentConfig.Builder,MLPaymentConfig>,SdkBuilder<MLPaymentConfig.Builder,MLPaymentConfig>,SdkPojo
- Enclosing class:
- MLPaymentConfig
public static interface MLPaymentConfig.Builder extends SdkPojo, CopyableBuilder<MLPaymentConfig.Builder,MLPaymentConfig>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default MLPaymentConfig.BuildermodelInference(Consumer<ModelInferencePaymentConfig.Builder> modelInference)The payment responsibilities accepted by the member for model inference.MLPaymentConfig.BuildermodelInference(ModelInferencePaymentConfig modelInference)The payment responsibilities accepted by the member for model inference.default MLPaymentConfig.BuildermodelTraining(Consumer<ModelTrainingPaymentConfig.Builder> modelTraining)The payment responsibilities accepted by the member for model training.MLPaymentConfig.BuildermodelTraining(ModelTrainingPaymentConfig modelTraining)The payment responsibilities accepted by the member for model training.-
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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
modelTraining
MLPaymentConfig.Builder modelTraining(ModelTrainingPaymentConfig modelTraining)
The payment responsibilities accepted by the member for model training.
- Parameters:
modelTraining- The payment responsibilities accepted by the member for model training.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
modelTraining
default MLPaymentConfig.Builder modelTraining(Consumer<ModelTrainingPaymentConfig.Builder> modelTraining)
The payment responsibilities accepted by the member for model training.
This is a convenience method that creates an instance of theModelTrainingPaymentConfig.Builderavoiding the need to create one manually viaModelTrainingPaymentConfig.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tomodelTraining(ModelTrainingPaymentConfig).- Parameters:
modelTraining- a consumer that will call methods onModelTrainingPaymentConfig.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
modelTraining(ModelTrainingPaymentConfig)
-
modelInference
MLPaymentConfig.Builder modelInference(ModelInferencePaymentConfig modelInference)
The payment responsibilities accepted by the member for model inference.
- Parameters:
modelInference- The payment responsibilities accepted by the member for model inference.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
modelInference
default MLPaymentConfig.Builder modelInference(Consumer<ModelInferencePaymentConfig.Builder> modelInference)
The payment responsibilities accepted by the member for model inference.
This is a convenience method that creates an instance of theModelInferencePaymentConfig.Builderavoiding the need to create one manually viaModelInferencePaymentConfig.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tomodelInference(ModelInferencePaymentConfig).- Parameters:
modelInference- a consumer that will call methods onModelInferencePaymentConfig.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
modelInference(ModelInferencePaymentConfig)
-
-