aws-cdk-lib.aws_quicksight.CfnTemplate.TableConditionalFormattingProperty

interface TableConditionalFormattingProperty

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

The conditional formatting for a PivotTableVisual .

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 tableConditionalFormattingProperty: quicksight.CfnTemplate.TableConditionalFormattingProperty = {
  conditionalFormattingOptions: [{
    cell: {
      fieldId: 'fieldId',

      // the properties below are optional
      textFormat: {
        backgroundColor: {
          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',
          },
        },
        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',
          },
        },
      },
    },
    row: {
      backgroundColor: {
        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',
        },
      },
      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
conditionalFormattingOptions?IResolvable | IResolvable | TableConditionalFormattingOptionProperty[]Conditional formatting options for a PivotTableVisual .

conditionalFormattingOptions?

Type: IResolvable | IResolvable | TableConditionalFormattingOptionProperty[] (optional)

Conditional formatting options for a PivotTableVisual .