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
Modifier and TypeMethodDescriptiondefault HistogramBinOptions.Builder
binCount
(Consumer<BinCountOptions.Builder> binCount) The options that determine the bin count of a histogram.binCount
(BinCountOptions binCount) The options that determine the bin count of a histogram.default HistogramBinOptions.Builder
binWidth
(Consumer<BinWidthOptions.Builder> binWidth) The options that determine the bin width of a histogram.binWidth
(BinWidthOptions binWidth) The options that determine the bin width of a histogram.selectedBinType
(String selectedBinType) The options that determine the selected bin type.selectedBinType
(HistogramBinType selectedBinType) The options that determine the selected bin type.startValue
(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 Details
-
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:
-
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:
-
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
The options that determine the bin count of a histogram.
This is a convenience method that creates an instance of theBinCountOptions.Builder
avoiding the need to create one manually viaBinCountOptions.builder()
.When the
Consumer
completes,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:
-
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
The options that determine the bin width of a histogram.
This is a convenience method that creates an instance of theBinWidthOptions.Builder
avoiding the need to create one manually viaBinWidthOptions.builder()
.When the
Consumer
completes,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:
-
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.
-