Interface MetricDatum.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<MetricDatum.Builder,MetricDatum>,SdkBuilder<MetricDatum.Builder,MetricDatum>,SdkPojo
- Enclosing class:
- MetricDatum
public static interface MetricDatum.Builder extends SdkPojo, CopyableBuilder<MetricDatum.Builder,MetricDatum>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description MetricDatum.BuildermetricName(String metricName)The name of the metric.MetricDatum.BuildermetricName(AutoMLMetricEnum metricName)The name of the metric.MetricDatum.Builderset(String set)The dataset split from which the AutoML job produced the metric.MetricDatum.Builderset(MetricSetSource set)The dataset split from which the AutoML job produced the metric.MetricDatum.BuilderstandardMetricName(String standardMetricName)The name of the standard metric.MetricDatum.BuilderstandardMetricName(AutoMLMetricExtendedEnum standardMetricName)The name of the standard metric.MetricDatum.Buildervalue(Float value)The value of the metric.-
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
-
metricName
MetricDatum.Builder metricName(String metricName)
The name of the metric.
- Parameters:
metricName- The name of the metric.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
AutoMLMetricEnum,AutoMLMetricEnum
-
metricName
MetricDatum.Builder metricName(AutoMLMetricEnum metricName)
The name of the metric.
- Parameters:
metricName- The name of the metric.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
AutoMLMetricEnum,AutoMLMetricEnum
-
value
MetricDatum.Builder value(Float value)
The value of the metric.
- Parameters:
value- The value of the metric.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
set
MetricDatum.Builder set(String set)
The dataset split from which the AutoML job produced the metric.
- Parameters:
set- The dataset split from which the AutoML job produced the metric.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
MetricSetSource,MetricSetSource
-
set
MetricDatum.Builder set(MetricSetSource set)
The dataset split from which the AutoML job produced the metric.
- Parameters:
set- The dataset split from which the AutoML job produced the metric.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
MetricSetSource,MetricSetSource
-
standardMetricName
MetricDatum.Builder standardMetricName(String standardMetricName)
The name of the standard metric.
For definitions of the standard metrics, see
Autopilot candidate metrics.- Parameters:
standardMetricName- The name of the standard metric.For definitions of the standard metrics, see
Autopilot candidate metrics.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
AutoMLMetricExtendedEnum,AutoMLMetricExtendedEnum
-
standardMetricName
MetricDatum.Builder standardMetricName(AutoMLMetricExtendedEnum standardMetricName)
The name of the standard metric.
For definitions of the standard metrics, see
Autopilot candidate metrics.- Parameters:
standardMetricName- The name of the standard metric.For definitions of the standard metrics, see
Autopilot candidate metrics.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
AutoMLMetricExtendedEnum,AutoMLMetricExtendedEnum
-
-