Interface CfnTemplatePropsMixin.TableCellConditionalFormattingProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTemplatePropsMixin.TableCellConditionalFormattingProperty.Jsii$Proxy
- Enclosing class:
CfnTemplatePropsMixin
@Stability(Stable)
public static interface CfnTemplatePropsMixin.TableCellConditionalFormattingProperty
extends software.amazon.jsii.JsiiSerializable
The cell conditional formatting option for a table.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.quicksight.*;
TableCellConditionalFormattingProperty tableCellConditionalFormattingProperty = TableCellConditionalFormattingProperty.builder()
.fieldId("fieldId")
.textFormat(TextConditionalFormatProperty.builder()
.backgroundColor(ConditionalFormattingColorProperty.builder()
.gradient(ConditionalFormattingGradientColorProperty.builder()
.color(GradientColorProperty.builder()
.stops(List.of(GradientStopProperty.builder()
.color("color")
.dataValue(123)
.gradientOffset(123)
.build()))
.build())
.expression("expression")
.build())
.solid(ConditionalFormattingSolidColorProperty.builder()
.color("color")
.expression("expression")
.build())
.build())
.icon(ConditionalFormattingIconProperty.builder()
.customCondition(ConditionalFormattingCustomIconConditionProperty.builder()
.color("color")
.displayConfiguration(ConditionalFormattingIconDisplayConfigurationProperty.builder()
.iconDisplayOption("iconDisplayOption")
.build())
.expression("expression")
.iconOptions(ConditionalFormattingCustomIconOptionsProperty.builder()
.icon("icon")
.unicodeIcon("unicodeIcon")
.build())
.build())
.iconSet(ConditionalFormattingIconSetProperty.builder()
.expression("expression")
.iconSetType("iconSetType")
.build())
.build())
.textColor(ConditionalFormattingColorProperty.builder()
.gradient(ConditionalFormattingGradientColorProperty.builder()
.color(GradientColorProperty.builder()
.stops(List.of(GradientStopProperty.builder()
.color("color")
.dataValue(123)
.gradientOffset(123)
.build()))
.build())
.expression("expression")
.build())
.solid(ConditionalFormattingSolidColorProperty.builder()
.color("color")
.expression("expression")
.build())
.build())
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnTemplatePropsMixin.TableCellConditionalFormattingProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getFieldId
The field ID of the cell for conditional formatting.- See Also:
-
getTextFormat
The text format of the cell for conditional formatting.Returns union: either
IResolvableorCfnTemplatePropsMixin.TextConditionalFormatProperty- See Also:
-
builder
@Stability(Stable) static CfnTemplatePropsMixin.TableCellConditionalFormattingProperty.Builder builder()
-