Interface HistogramEntry.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<HistogramEntry.Builder,HistogramEntry>,SdkBuilder<HistogramEntry.Builder,HistogramEntry>,SdkPojo
- Enclosing class:
- HistogramEntry
@Mutable @NotThreadSafe public static interface HistogramEntry.Builder extends SdkPojo, CopyableBuilder<HistogramEntry.Builder,HistogramEntry>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description HistogramEntry.Buildercount(Integer count)The prevalence of the entry.HistogramEntry.Buildervalue(Double value)The value of the entry.-
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
-
value
HistogramEntry.Builder value(Double value)
The value of the entry.
- Parameters:
value- The value of the entry.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
count
HistogramEntry.Builder count(Integer count)
The prevalence of the entry.
- Parameters:
count- The prevalence of the entry.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-