Interface CfnAnalysisPropsMixin.PivotTableCellConditionalFormattingProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAnalysisPropsMixin.PivotTableCellConditionalFormattingProperty.Jsii$Proxy
- Enclosing class:
CfnAnalysisPropsMixin
@Stability(Stable)
public static interface CfnAnalysisPropsMixin.PivotTableCellConditionalFormattingProperty
extends software.amazon.jsii.JsiiSerializable
The cell conditional formatting option for a pivot 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.*;
PivotTableCellConditionalFormattingProperty pivotTableCellConditionalFormattingProperty = PivotTableCellConditionalFormattingProperty.builder()
.fieldId("fieldId")
.scope(PivotTableConditionalFormattingScopeProperty.builder()
.role("role")
.build())
.scopes(List.of(PivotTableConditionalFormattingScopeProperty.builder()
.role("role")
.build()))
.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 forCfnAnalysisPropsMixin.PivotTableCellConditionalFormattingProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe field ID of the cell for conditional formatting.default ObjectgetScope()The scope of the cell for conditional formatting.default ObjectA list of cell scopes for conditional formatting.default ObjectThe text format of the cell for conditional formatting.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getFieldId
The field ID of the cell for conditional formatting.- See Also:
-
getScope
The scope of the cell for conditional formatting.Returns union: either
IResolvableorCfnAnalysisPropsMixin.PivotTableConditionalFormattingScopeProperty- See Also:
-
getScopes
A list of cell scopes for conditional formatting.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnAnalysisPropsMixin.PivotTableConditionalFormattingScopeProperty>- See Also:
-
getTextFormat
The text format of the cell for conditional formatting.Returns union: either
IResolvableorCfnAnalysisPropsMixin.TextConditionalFormatProperty- See Also:
-
builder
@Stability(Stable) static CfnAnalysisPropsMixin.PivotTableCellConditionalFormattingProperty.Builder builder()
-