Interface OFITrainingMetricsValue.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<OFITrainingMetricsValue.Builder,OFITrainingMetricsValue>,SdkBuilder<OFITrainingMetricsValue.Builder,OFITrainingMetricsValue>,SdkPojo
- Enclosing class:
- OFITrainingMetricsValue
public static interface OFITrainingMetricsValue.Builder extends SdkPojo, CopyableBuilder<OFITrainingMetricsValue.Builder,OFITrainingMetricsValue>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description OFITrainingMetricsValue.BuildermetricDataPoints(Collection<OFIMetricDataPoint> metricDataPoints)The model's performance metrics data points.OFITrainingMetricsValue.BuildermetricDataPoints(Consumer<OFIMetricDataPoint.Builder>... metricDataPoints)The model's performance metrics data points.OFITrainingMetricsValue.BuildermetricDataPoints(OFIMetricDataPoint... metricDataPoints)The model's performance metrics data points.default OFITrainingMetricsValue.BuildermodelPerformance(Consumer<OFIModelPerformance.Builder> modelPerformance)The model's overall performance score.OFITrainingMetricsValue.BuildermodelPerformance(OFIModelPerformance modelPerformance)The model's overall performance score.-
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
-
metricDataPoints
OFITrainingMetricsValue.Builder metricDataPoints(Collection<OFIMetricDataPoint> metricDataPoints)
The model's performance metrics data points.
- Parameters:
metricDataPoints- The model's performance metrics data points.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
metricDataPoints
OFITrainingMetricsValue.Builder metricDataPoints(OFIMetricDataPoint... metricDataPoints)
The model's performance metrics data points.
- Parameters:
metricDataPoints- The model's performance metrics data points.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
metricDataPoints
OFITrainingMetricsValue.Builder metricDataPoints(Consumer<OFIMetricDataPoint.Builder>... metricDataPoints)
The model's performance metrics data points.
This is a convenience method that creates an instance of theOFIMetricDataPoint.Builderavoiding the need to create one manually viaOFIMetricDataPoint.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#metricDataPoints(List.) - Parameters:
metricDataPoints- a consumer that will call methods onOFIMetricDataPoint.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#metricDataPoints(java.util.Collection)
-
modelPerformance
OFITrainingMetricsValue.Builder modelPerformance(OFIModelPerformance modelPerformance)
The model's overall performance score.
- Parameters:
modelPerformance- The model's overall performance score.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
modelPerformance
default OFITrainingMetricsValue.Builder modelPerformance(Consumer<OFIModelPerformance.Builder> modelPerformance)
The model's overall performance score.
This is a convenience method that creates an instance of theOFIModelPerformance.Builderavoiding the need to create one manually viaOFIModelPerformance.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tomodelPerformance(OFIModelPerformance).- Parameters:
modelPerformance- a consumer that will call methods onOFIModelPerformance.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
modelPerformance(OFIModelPerformance)
-
-