interface ColorsConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnDashboardPropsMixin.ColorsConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnDashboardPropsMixin_ColorsConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnDashboardPropsMixin.ColorsConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnDashboardPropsMixin.ColorsConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnDashboardPropsMixin » ColorsConfigurationProperty |
The color configurations for 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 colorsConfigurationProperty: quicksight_mixins.CfnDashboardPropsMixin.ColorsConfigurationProperty = {
customColors: [{
color: 'color',
fieldValue: 'fieldValue',
specialValue: 'specialValue',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| custom | IResolvable | (IResolvable | Custom)[] | A list of up to 50 custom colors. |
customColors?
Type:
IResolvable | (IResolvable | Custom)[]
(optional)
A list of up to 50 custom colors.

.NET
Go
Java
Python
TypeScript