interface TableRowConditionalFormattingProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.QuickSight.CfnAnalysis.TableRowConditionalFormattingProperty | 
|  Java | software.amazon.awscdk.services.quicksight.CfnAnalysis.TableRowConditionalFormattingProperty | 
|  Python | aws_cdk.aws_quicksight.CfnAnalysis.TableRowConditionalFormattingProperty | 
|  TypeScript | @aws-cdk/aws-quicksight»CfnAnalysis»TableRowConditionalFormattingProperty | 
The conditional formatting of a table row.
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 tableRowConditionalFormattingProperty: quicksight.CfnAnalysis.TableRowConditionalFormattingProperty = {
  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
| Name | Type | Description | 
|---|---|---|
| background | IResolvable | Conditional | The conditional formatting color (solid, gradient) of the background for a table row. | 
| text | IResolvable | Conditional | The conditional formatting color (solid, gradient) of the text for a table row. | 
backgroundColor?
Type:
IResolvable | Conditional
(optional)
The conditional formatting color (solid, gradient) of the background for a table row.
textColor?
Type:
IResolvable | Conditional
(optional)
The conditional formatting color (solid, gradient) of the text for a table row.
