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();