package awsquicksight // The options that determine the bin count of a histogram. // // 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" // // binCountOptionsProperty := &BinCountOptionsProperty{ // Value: jsii.Number(123), // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-bincountoptions.html // type CfnDashboard_BinCountOptionsProperty struct { // The options that determine the bin count value. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-bincountoptions.html#cfn-quicksight-dashboard-bincountoptions-value // Value *float64 `field:"optional" json:"value" yaml:"value"` }