package awsquicksight // The inline visualization of a specific type to display within a chart. // // 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" // // tableInlineVisualizationProperty := &TableInlineVisualizationProperty{ // DataBars: &DataBarsOptionsProperty{ // FieldId: jsii.String("fieldId"), // // // the properties below are optional // NegativeColor: jsii.String("negativeColor"), // PositiveColor: jsii.String("positiveColor"), // }, // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-tableinlinevisualization.html // type CfnAnalysis_TableInlineVisualizationProperty struct { // The configuration of the inline visualization of the data bars within a chart. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-tableinlinevisualization.html#cfn-quicksight-analysis-tableinlinevisualization-databars // DataBars interface{} `field:"optional" json:"dataBars" yaml:"dataBars"` }