interface CustomColorProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnDashboardPropsMixin.CustomColorProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnDashboardPropsMixin_CustomColorProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnDashboardPropsMixin.CustomColorProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnDashboardPropsMixin.CustomColorProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnDashboardPropsMixin » 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 { mixins as quicksight_mixins } from '@aws-cdk/mixins-preview/aws-quicksight';
const customColorProperty: quicksight_mixins.CfnDashboardPropsMixin.CustomColorProperty = {
color: 'color',
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
(optional)
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