Interface StatisticSet.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<StatisticSet.Builder,StatisticSet>,SdkBuilder<StatisticSet.Builder,StatisticSet>,SdkPojo
- Enclosing class:
- StatisticSet
public static interface StatisticSet.Builder extends SdkPojo, CopyableBuilder<StatisticSet.Builder,StatisticSet>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StatisticSet.Buildermaximum(Double maximum)Internal only.StatisticSet.Builderminimum(Double minimum)Internal only.StatisticSet.BuildersampleCount(Integer sampleCount)Internal only.StatisticSet.Buildersum(Double sum)Internal only.-
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
-
sampleCount
StatisticSet.Builder sampleCount(Integer sampleCount)
Internal only. The number of samples used for the statistic set.
- Parameters:
sampleCount- Internal only. The number of samples used for the statistic set.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sum
StatisticSet.Builder sum(Double sum)
Internal only. The sum of values for the sample set.
- Parameters:
sum- Internal only. The sum of values for the sample set.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
minimum
StatisticSet.Builder minimum(Double minimum)
Internal only. The minimum value of the sample set.
- Parameters:
minimum- Internal only. The minimum value of the sample set.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
maximum
StatisticSet.Builder maximum(Double maximum)
Internal only. The maximum value of the sample set.
- Parameters:
maximum- Internal only. The maximum value of the sample set.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-