Interface CfnDashboard.HistogramBinOptionsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDashboard.HistogramBinOptionsProperty.Jsii$Proxy
- Enclosing class:
CfnDashboard
@Stability(Stable)
public static interface CfnDashboard.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
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnDashboard.HistogramBinOptionsProperty
static final class
An implementation forCfnDashboard.HistogramBinOptionsProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default Object
The options that determine the bin count of a histogram.default Object
The options that determine the bin width of a histogram.default String
The options that determine the selected bin type.default Number
The 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.- See Also:
-
getBinWidth
The options that determine the bin width of a histogram.- 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
-