package awsquicksight // 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 "github.com/aws/aws-cdk-go/awscdk" // // histogramBinOptionsProperty := &HistogramBinOptionsProperty{ // BinCount: &BinCountOptionsProperty{ // Value: jsii.Number(123), // }, // BinWidth: &BinWidthOptionsProperty{ // BinCountLimit: jsii.Number(123), // Value: jsii.Number(123), // }, // SelectedBinType: jsii.String("selectedBinType"), // StartValue: jsii.Number(123), // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-histogrambinoptions.html // type CfnDashboard_HistogramBinOptionsProperty struct { // The options that determine the bin count of a histogram. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-histogrambinoptions.html#cfn-quicksight-dashboard-histogrambinoptions-bincount // BinCount interface{} `field:"optional" json:"binCount" yaml:"binCount"` // The options that determine the bin width of a histogram. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-histogrambinoptions.html#cfn-quicksight-dashboard-histogrambinoptions-binwidth // BinWidth interface{} `field:"optional" json:"binWidth" yaml:"binWidth"` // The options that determine the selected bin type. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-histogrambinoptions.html#cfn-quicksight-dashboard-histogrambinoptions-selectedbintype // SelectedBinType *string `field:"optional" json:"selectedBinType" yaml:"selectedBinType"` // The options that determine the bin start value. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-histogrambinoptions.html#cfn-quicksight-dashboard-histogrambinoptions-startvalue // StartValue *float64 `field:"optional" json:"startValue" yaml:"startValue"` }