interface CustomColorProperty
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.QuickSight.CfnDashboard.CustomColorProperty | 
  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnDashboard_CustomColorProperty | 
  Java | software.amazon.awscdk.services.quicksight.CfnDashboard.CustomColorProperty | 
  Python | aws_cdk.aws_quicksight.CfnDashboard.CustomColorProperty | 
  TypeScript  | aws-cdk-lib » aws_quicksight » CfnDashboard » CustomColorProperty | 
Determines the color that's applied to a particular data value in a column.
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 customColorProperty: quicksight.CfnDashboard.CustomColorProperty = {
  color: 'color',
  // the properties below are optional
  fieldValue: 'fieldValue',
  specialValue: 'specialValue',
};
Properties
| Name | Type | Description | 
|---|---|---|
| color | string | The color that is applied to the data value. | 
| field | string | The data value that the color is applied to. | 
| special | string | The value of a special data value. | 
color
Type:
string
The color that is applied to the data value.
fieldValue?
Type:
string
(optional)
The data value that the color is applied to.
specialValue?
Type:
string
(optional)
The value of a special data value.

 .NET
 Go
 Java
 Python
 TypeScript