interface CustomColorProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnTemplate.CustomColorProperty |
Java | software.amazon.awscdk.services.quicksight.CfnTemplate.CustomColorProperty |
Python | aws_cdk.aws_quicksight.CfnTemplate.CustomColorProperty |
TypeScript | @aws-cdk/aws-quicksight » CfnTemplate » 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.CfnTemplate.CustomColorProperty = {
color: 'color',
// the properties below are optional
fieldValue: 'fieldValue',
specialValue: 'specialValue',
};
Properties
| Name | Type | Description |
|---|---|---|
| color | string | CfnTemplate.CustomColorProperty.Color. |
| field | string | CfnTemplate.CustomColorProperty.FieldValue. |
| special | string | CfnTemplate.CustomColorProperty.SpecialValue. |
color
Type:
string
CfnTemplate.CustomColorProperty.Color.
fieldValue?
Type:
string
(optional)
CfnTemplate.CustomColorProperty.FieldValue.
specialValue?
Type:
string
(optional)
CfnTemplate.CustomColorProperty.SpecialValue.

.NET
Java
Python
TypeScript