interface ConditionalFormattingCustomIconConditionProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.QuickSight.CfnDashboard.ConditionalFormattingCustomIconConditionProperty | 
|  Java | software.amazon.awscdk.services.quicksight.CfnDashboard.ConditionalFormattingCustomIconConditionProperty | 
|  Python | aws_cdk.aws_quicksight.CfnDashboard.ConditionalFormattingCustomIconConditionProperty | 
|  TypeScript | @aws-cdk/aws-quicksight»CfnDashboard»ConditionalFormattingCustomIconConditionProperty | 
Determines the custom condition for an icon set.
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 conditionalFormattingCustomIconConditionProperty: quicksight.CfnDashboard.ConditionalFormattingCustomIconConditionProperty = {
  expression: 'expression',
  iconOptions: {
    icon: 'icon',
    unicodeIcon: 'unicodeIcon',
  },
  // the properties below are optional
  color: 'color',
  displayConfiguration: {
    iconDisplayOption: 'iconDisplayOption',
  },
};
Properties
| Name | Type | Description | 
|---|---|---|
| expression | string | The expression that determines the condition of the icon set. | 
| icon | IResolvable | Conditional | Custom icon options for an icon set. | 
| color? | string | Determines the color of the icon. | 
| display | IResolvable | Conditional | Determines the icon display configuration. | 
expression
Type:
string
The expression that determines the condition of the icon set.
iconOptions
Type:
IResolvable | Conditional
Custom icon options for an icon set.
color?
Type:
string
(optional)
Determines the color of the icon.
displayConfiguration?
Type:
IResolvable | Conditional
(optional)
Determines the icon display configuration.
