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
Modifier and TypeMethodDescriptionmetricDataPoints
(Collection<OFIMetricDataPoint> metricDataPoints) The model's performance metrics data points.metricDataPoints
(Consumer<OFIMetricDataPoint.Builder>... metricDataPoints) The model's performance metrics data points.metricDataPoints
(OFIMetricDataPoint... metricDataPoints) The model's performance metrics data points.default OFITrainingMetricsValue.Builder
modelPerformance
(Consumer<OFIModelPerformance.Builder> modelPerformance) The model's overall performance score.modelPerformance
(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 Details
-
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
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.Builder
avoiding the need to create one manually viaOFIMetricDataPoint.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tometricDataPoints(List<OFIMetricDataPoint>)
.- 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:
-
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.Builder
avoiding the need to create one manually viaOFIModelPerformance.builder()
.When the
Consumer
completes,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:
-