aws-cdk-lib.aws_quicksight.CfnTemplate.GaugeChartConditionalFormattingOptionProperty

interface GaugeChartConditionalFormattingOptionProperty

LanguageType name
.NETAmazon.CDK.AWS.QuickSight.CfnTemplate.GaugeChartConditionalFormattingOptionProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnTemplate_GaugeChartConditionalFormattingOptionProperty
Javasoftware.amazon.awscdk.services.quicksight.CfnTemplate.GaugeChartConditionalFormattingOptionProperty
Pythonaws_cdk.aws_quicksight.CfnTemplate.GaugeChartConditionalFormattingOptionProperty
TypeScript aws-cdk-lib » aws_quicksight » CfnTemplate » GaugeChartConditionalFormattingOptionProperty

Conditional formatting options 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-lib';
const gaugeChartConditionalFormattingOptionProperty: quicksight.CfnTemplate.GaugeChartConditionalFormattingOptionProperty = {
  arc: {
    foregroundColor: {
      gradient: {
        color: {
          stops: [{
            gradientOffset: 123,

            // the properties below are optional
            color: 'color',
            dataValue: 123,
          }],
        },
        expression: 'expression',
      },
      solid: {
        expression: 'expression',

        // the properties below are optional
        color: 'color',
      },
    },
  },
  primaryValue: {
    icon: {
      customCondition: {
        expression: 'expression',
        iconOptions: {
          icon: 'icon',
          unicodeIcon: 'unicodeIcon',
        },

        // the properties below are optional
        color: 'color',
        displayConfiguration: {
          iconDisplayOption: 'iconDisplayOption',
        },
      },
      iconSet: {
        expression: 'expression',

        // the properties below are optional
        iconSetType: 'iconSetType',
      },
    },
    textColor: {
      gradient: {
        color: {
          stops: [{
            gradientOffset: 123,

            // the properties below are optional
            color: 'color',
            dataValue: 123,
          }],
        },
        expression: 'expression',
      },
      solid: {
        expression: 'expression',

        // the properties below are optional
        color: 'color',
      },
    },
  },
};

Properties

NameTypeDescription
arc?IResolvable | GaugeChartArcConditionalFormattingPropertyThe options that determine the presentation of the arc of a GaugeChartVisual .
primaryValue?IResolvable | GaugeChartPrimaryValueConditionalFormattingPropertyThe conditional formatting for the primary value of a GaugeChartVisual .

arc?

Type: IResolvable | GaugeChartArcConditionalFormattingProperty (optional)

The options that determine the presentation of the arc of a GaugeChartVisual .


primaryValue?

Type: IResolvable | GaugeChartPrimaryValueConditionalFormattingProperty (optional)

The conditional formatting for the primary value of a GaugeChartVisual .