Interface CfnAnalysis.HistogramBinOptionsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAnalysis.HistogramBinOptionsProperty.Jsii$Proxy
- Enclosing class:
CfnAnalysis
@Stability(Stable)
public static interface CfnAnalysis.HistogramBinOptionsProperty
extends software.amazon.jsii.JsiiSerializable
The options that determine the presentation of histogram bins.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.quicksight.*;
HistogramBinOptionsProperty histogramBinOptionsProperty = HistogramBinOptionsProperty.builder()
.binCount(BinCountOptionsProperty.builder()
.value(123)
.build())
.binWidth(BinWidthOptionsProperty.builder()
.binCountLimit(123)
.value(123)
.build())
.selectedBinType("selectedBinType")
.startValue(123)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnAnalysis.HistogramBinOptionsPropertystatic final classAn implementation forCfnAnalysis.HistogramBinOptionsProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectThe options that determine the bin count of a histogram.default ObjectThe options that determine the bin width of a histogram.default StringThe options that determine the selected bin type.default NumberThe options that determine the bin start value.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBinCount
The options that determine the bin count of a histogram.Returns union: either
IResolvableorCfnAnalysis.BinCountOptionsProperty- See Also:
-
getBinWidth
The options that determine the bin width of a histogram.Returns union: either
IResolvableorCfnAnalysis.BinWidthOptionsProperty- See Also:
-
getSelectedBinType
The options that determine the selected bin type.- See Also:
-
getStartValue
The options that determine the bin start value.- See Also:
-
builder
-