Interface CfnAnalysis.ConditionalFormattingCustomIconConditionProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAnalysis.ConditionalFormattingCustomIconConditionProperty.Jsii$Proxy
- Enclosing class:
CfnAnalysis
@Stability(Stable)
public static interface CfnAnalysis.ConditionalFormattingCustomIconConditionProperty
extends software.amazon.jsii.JsiiSerializable
Determines the custom condition for an icon set.
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.*; ConditionalFormattingCustomIconConditionProperty conditionalFormattingCustomIconConditionProperty = 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();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
static final class
An implementation forCfnAnalysis.ConditionalFormattingCustomIconConditionProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getExpression
The expression that determines the condition of the icon set.- See Also:
-
getIconOptions
Custom icon options for an icon set.- See Also:
-
getColor
Determines the color of the icon.- See Also:
-
getDisplayConfiguration
Determines the icon display configuration.- See Also:
-
builder
@Stability(Stable) static CfnAnalysis.ConditionalFormattingCustomIconConditionProperty.Builder builder()
-