interface TableRowConditionalFormattingProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnDashboardPropsMixin.TableRowConditionalFormattingProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnDashboardPropsMixin_TableRowConditionalFormattingProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnDashboardPropsMixin.TableRowConditionalFormattingProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnDashboardPropsMixin.TableRowConditionalFormattingProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnDashboardPropsMixin » 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 { mixins as quicksight_mixins } from '@aws-cdk/mixins-preview/aws-quicksight';
const tableRowConditionalFormattingProperty: quicksight_mixins.CfnDashboardPropsMixin.TableRowConditionalFormattingProperty = {
backgroundColor: {
gradient: {
color: {
stops: [{
color: 'color',
dataValue: 123,
gradientOffset: 123,
}],
},
expression: 'expression',
},
solid: {
color: 'color',
expression: 'expression',
},
},
textColor: {
gradient: {
color: {
stops: [{
color: 'color',
dataValue: 123,
gradientOffset: 123,
}],
},
expression: 'expression',
},
solid: {
color: 'color',
expression: 'expression',
},
},
};
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.

.NET
Go
Java
Python
TypeScript