Interface AlgorithmValidationProfile.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<AlgorithmValidationProfile.Builder,AlgorithmValidationProfile>
,SdkBuilder<AlgorithmValidationProfile.Builder,AlgorithmValidationProfile>
,SdkPojo
- Enclosing class:
- AlgorithmValidationProfile
public static interface AlgorithmValidationProfile.Builder extends SdkPojo, CopyableBuilder<AlgorithmValidationProfile.Builder,AlgorithmValidationProfile>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description AlgorithmValidationProfile.Builder
profileName(String profileName)
The name of the profile for the algorithm.default AlgorithmValidationProfile.Builder
trainingJobDefinition(Consumer<TrainingJobDefinition.Builder> trainingJobDefinition)
TheTrainingJobDefinition
object that describes the training job that SageMaker runs to validate your algorithm.AlgorithmValidationProfile.Builder
trainingJobDefinition(TrainingJobDefinition trainingJobDefinition)
TheTrainingJobDefinition
object that describes the training job that SageMaker runs to validate your algorithm.default AlgorithmValidationProfile.Builder
transformJobDefinition(Consumer<TransformJobDefinition.Builder> transformJobDefinition)
TheTransformJobDefinition
object that describes the transform job that SageMaker runs to validate your algorithm.AlgorithmValidationProfile.Builder
transformJobDefinition(TransformJobDefinition transformJobDefinition)
TheTransformJobDefinition
object that describes the transform job that SageMaker runs to validate your algorithm.-
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
-
profileName
AlgorithmValidationProfile.Builder profileName(String profileName)
The name of the profile for the algorithm. The name must have 1 to 63 characters. Valid characters are a-z, A-Z, 0-9, and - (hyphen).
- Parameters:
profileName
- The name of the profile for the algorithm. The name must have 1 to 63 characters. Valid characters are a-z, A-Z, 0-9, and - (hyphen).- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
trainingJobDefinition
AlgorithmValidationProfile.Builder trainingJobDefinition(TrainingJobDefinition trainingJobDefinition)
The
TrainingJobDefinition
object that describes the training job that SageMaker runs to validate your algorithm.- Parameters:
trainingJobDefinition
- TheTrainingJobDefinition
object that describes the training job that SageMaker runs to validate your algorithm.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
trainingJobDefinition
default AlgorithmValidationProfile.Builder trainingJobDefinition(Consumer<TrainingJobDefinition.Builder> trainingJobDefinition)
The
This is a convenience method that creates an instance of theTrainingJobDefinition
object that describes the training job that SageMaker runs to validate your algorithm.TrainingJobDefinition.Builder
avoiding the need to create one manually viaTrainingJobDefinition.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed totrainingJobDefinition(TrainingJobDefinition)
.- Parameters:
trainingJobDefinition
- a consumer that will call methods onTrainingJobDefinition.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
trainingJobDefinition(TrainingJobDefinition)
-
transformJobDefinition
AlgorithmValidationProfile.Builder transformJobDefinition(TransformJobDefinition transformJobDefinition)
The
TransformJobDefinition
object that describes the transform job that SageMaker runs to validate your algorithm.- Parameters:
transformJobDefinition
- TheTransformJobDefinition
object that describes the transform job that SageMaker runs to validate your algorithm.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
transformJobDefinition
default AlgorithmValidationProfile.Builder transformJobDefinition(Consumer<TransformJobDefinition.Builder> transformJobDefinition)
The
This is a convenience method that creates an instance of theTransformJobDefinition
object that describes the transform job that SageMaker runs to validate your algorithm.TransformJobDefinition.Builder
avoiding the need to create one manually viaTransformJobDefinition.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed totransformJobDefinition(TransformJobDefinition)
.- Parameters:
transformJobDefinition
- a consumer that will call methods onTransformJobDefinition.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
transformJobDefinition(TransformJobDefinition)
-
-