interface CustomColorProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnDashboard.CustomColorProperty |
Java | software.amazon.awscdk.services.quicksight.CfnDashboard.CustomColorProperty |
Python | aws_cdk.aws_quicksight.CfnDashboard.CustomColorProperty |
TypeScript | @aws-cdk/aws-quicksight » CfnDashboard » CustomColorProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as quicksight from '@aws-cdk/aws-quicksight';
const customColorProperty: quicksight.CfnDashboard.CustomColorProperty = {
color: 'color',
// the properties below are optional
fieldValue: 'fieldValue',
specialValue: 'specialValue',
};
Properties
| Name | Type | Description |
|---|---|---|
| color | string | CfnDashboard.CustomColorProperty.Color. |
| field | string | CfnDashboard.CustomColorProperty.FieldValue. |
| special | string | CfnDashboard.CustomColorProperty.SpecialValue. |
color
Type:
string
CfnDashboard.CustomColorProperty.Color.
fieldValue?
Type:
string
(optional)
CfnDashboard.CustomColorProperty.FieldValue.
specialValue?
Type:
string
(optional)
CfnDashboard.CustomColorProperty.SpecialValue.

.NET
Java
Python
TypeScript