Interface CfnDashboard.GaugeChartPrimaryValueConditionalFormattingProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDashboard.GaugeChartPrimaryValueConditionalFormattingProperty.Jsii$Proxy
- Enclosing class:
CfnDashboard
@Stability(Stable)
public static interface CfnDashboard.GaugeChartPrimaryValueConditionalFormattingProperty
extends software.amazon.jsii.JsiiSerializable
The conditional formatting for the primary value of a
GaugeChartVisual
.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.quicksight.*; GaugeChartPrimaryValueConditionalFormattingProperty gaugeChartPrimaryValueConditionalFormattingProperty = GaugeChartPrimaryValueConditionalFormattingProperty.builder() .icon(ConditionalFormattingIconProperty.builder() .customCondition(ConditionalFormattingCustomIconConditionProperty.builder() .expression("expression") .iconOptions(ConditionalFormattingCustomIconOptionsProperty.builder() .icon("icon") .unicodeIcon("unicodeIcon") .build()) // the properties below are optional .color("color") .displayConfiguration(ConditionalFormattingIconDisplayConfigurationProperty.builder() .iconDisplayOption("iconDisplayOption") .build()) .build()) .iconSet(ConditionalFormattingIconSetProperty.builder() .expression("expression") // the properties below are optional .iconSetType("iconSetType") .build()) .build()) .textColor(ConditionalFormattingColorProperty.builder() .gradient(ConditionalFormattingGradientColorProperty.builder() .color(GradientColorProperty.builder() .stops(List.of(GradientStopProperty.builder() .gradientOffset(123) // the properties below are optional .color("color") .dataValue(123) .build())) .build()) .expression("expression") .build()) .solid(ConditionalFormattingSolidColorProperty.builder() .expression("expression") // the properties below are optional .color("color") .build()) .build()) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
static final class
An implementation forCfnDashboard.GaugeChartPrimaryValueConditionalFormattingProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getIcon
The conditional formatting of the primary value icon. -
getTextColor
The conditional formatting of the primary value text color. -
builder
@Stability(Stable) static CfnDashboard.GaugeChartPrimaryValueConditionalFormattingProperty.Builder builder()
-