interface GaugeChartPrimaryValueConditionalFormattingProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.QuickSight.CfnTemplatePropsMixin.GaugeChartPrimaryValueConditionalFormattingProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsquicksight#CfnTemplatePropsMixin_GaugeChartPrimaryValueConditionalFormattingProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.quicksight.CfnTemplatePropsMixin.GaugeChartPrimaryValueConditionalFormattingProperty |
Python | aws_cdk.cfn_property_mixins.aws_quicksight.CfnTemplatePropsMixin.GaugeChartPrimaryValueConditionalFormattingProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_quicksight » CfnTemplatePropsMixin » GaugeChartPrimaryValueConditionalFormattingProperty |
The conditional formatting for the primary value of a GaugeChartVisual .
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_quicksight as quicksight } from '@aws-cdk/cfn-property-mixins';
const gaugeChartPrimaryValueConditionalFormattingProperty: quicksight.CfnTemplatePropsMixin.GaugeChartPrimaryValueConditionalFormattingProperty = {
icon: {
customCondition: {
color: 'color',
displayConfiguration: {
iconDisplayOption: 'iconDisplayOption',
},
expression: 'expression',
iconOptions: {
icon: 'icon',
unicodeIcon: 'unicodeIcon',
},
},
iconSet: {
expression: 'expression',
iconSetType: 'iconSetType',
},
},
textColor: {
gradient: {
color: {
stops: [{
color: 'color',
dataValue: 123,
gradientOffset: 123,
}],
},
expression: 'expression',
},
solid: {
color: 'color',
expression: 'expression',
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| icon? | IResolvable | Conditional | The conditional formatting of the primary value icon. |
| text | IResolvable | Conditional | The conditional formatting of the primary value text color. |
icon?
Type:
IResolvable | Conditional
(optional)
The conditional formatting of the primary value icon.
textColor?
Type:
IResolvable | Conditional
(optional)
The conditional formatting of the primary value text color.

.NET
Go
Java
Python
TypeScript