aws-cdk-lib.aws_quicksight.CfnDashboard.HistogramBinOptionsProperty

interface HistogramBinOptionsProperty

LanguageType name
.NETAmazon.CDK.AWS.QuickSight.CfnDashboard.HistogramBinOptionsProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnDashboard_HistogramBinOptionsProperty
Javasoftware.amazon.awscdk.services.quicksight.CfnDashboard.HistogramBinOptionsProperty
Pythonaws_cdk.aws_quicksight.CfnDashboard.HistogramBinOptionsProperty
TypeScript aws-cdk-lib » aws_quicksight » CfnDashboard » HistogramBinOptionsProperty

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 { aws_quicksight as quicksight } from 'aws-cdk-lib';
const histogramBinOptionsProperty: quicksight.CfnDashboard.HistogramBinOptionsProperty = {
  binCount: {
    value: 123,
  },
  binWidth: {
    binCountLimit: 123,
    value: 123,
  },
  selectedBinType: 'selectedBinType',
  startValue: 123,
};

Properties

NameTypeDescription
binCount?IResolvable | BinCountOptionsPropertyThe options that determine the bin count of a histogram.
binWidth?IResolvable | BinWidthOptionsPropertyThe options that determine the bin width of a histogram.
selectedBinType?stringThe options that determine the selected bin type.
startValue?numberThe options that determine the bin start value.

binCount?

Type: IResolvable | BinCountOptionsProperty (optional)

The options that determine the bin count of a histogram.


binWidth?

Type: IResolvable | BinWidthOptionsProperty (optional)

The options that determine the bin width of a histogram.


selectedBinType?

Type: string (optional)

The options that determine the selected bin type.


startValue?

Type: number (optional)

The options that determine the bin start value.