package awsquicksight // Determines the gradient color settings. // // 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" // // gradientColorProperty := &GradientColorProperty{ // Stops: []interface{}{ // &GradientStopProperty{ // GradientOffset: jsii.Number(123), // // // the properties below are optional // Color: jsii.String("color"), // DataValue: jsii.Number(123), // }, // }, // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-gradientcolor.html // type CfnDashboard_GradientColorProperty struct { // The list of gradient color stops. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-gradientcolor.html#cfn-quicksight-dashboard-gradientcolor-stops // Stops interface{} `field:"optional" json:"stops" yaml:"stops"` }