Interface HistogramBinOptions.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<HistogramBinOptions.Builder,HistogramBinOptions>,SdkBuilder<HistogramBinOptions.Builder,HistogramBinOptions>,SdkPojo
- Enclosing class:
- HistogramBinOptions
public static interface HistogramBinOptions.Builder extends SdkPojo, CopyableBuilder<HistogramBinOptions.Builder,HistogramBinOptions>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default HistogramBinOptions.BuilderbinCount(Consumer<BinCountOptions.Builder> binCount)The options that determine the bin count of a histogram.HistogramBinOptions.BuilderbinCount(BinCountOptions binCount)The options that determine the bin count of a histogram.default HistogramBinOptions.BuilderbinWidth(Consumer<BinWidthOptions.Builder> binWidth)The options that determine the bin width of a histogram.HistogramBinOptions.BuilderbinWidth(BinWidthOptions binWidth)The options that determine the bin width of a histogram.HistogramBinOptions.BuilderselectedBinType(String selectedBinType)The options that determine the selected bin type.HistogramBinOptions.BuilderselectedBinType(HistogramBinType selectedBinType)The options that determine the selected bin type.HistogramBinOptions.BuilderstartValue(Double startValue)The options that determine the bin start value.-
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
-
selectedBinType
HistogramBinOptions.Builder selectedBinType(String selectedBinType)
The options that determine the selected bin type.
- Parameters:
selectedBinType- The options that determine the selected bin type.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
HistogramBinType,HistogramBinType
-
selectedBinType
HistogramBinOptions.Builder selectedBinType(HistogramBinType selectedBinType)
The options that determine the selected bin type.
- Parameters:
selectedBinType- The options that determine the selected bin type.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
HistogramBinType,HistogramBinType
-
binCount
HistogramBinOptions.Builder binCount(BinCountOptions binCount)
The options that determine the bin count of a histogram.
- Parameters:
binCount- The options that determine the bin count of a histogram.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
binCount
default HistogramBinOptions.Builder binCount(Consumer<BinCountOptions.Builder> binCount)
The options that determine the bin count of a histogram.
This is a convenience method that creates an instance of theBinCountOptions.Builderavoiding the need to create one manually viaBinCountOptions.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tobinCount(BinCountOptions).- Parameters:
binCount- a consumer that will call methods onBinCountOptions.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
binCount(BinCountOptions)
-
binWidth
HistogramBinOptions.Builder binWidth(BinWidthOptions binWidth)
The options that determine the bin width of a histogram.
- Parameters:
binWidth- The options that determine the bin width of a histogram.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
binWidth
default HistogramBinOptions.Builder binWidth(Consumer<BinWidthOptions.Builder> binWidth)
The options that determine the bin width of a histogram.
This is a convenience method that creates an instance of theBinWidthOptions.Builderavoiding the need to create one manually viaBinWidthOptions.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tobinWidth(BinWidthOptions).- Parameters:
binWidth- a consumer that will call methods onBinWidthOptions.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
binWidth(BinWidthOptions)
-
startValue
HistogramBinOptions.Builder startValue(Double startValue)
The options that determine the bin start value.
- Parameters:
startValue- The options that determine the bin start value.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-