Class CfnTemplate.ConditionalFormattingCustomIconConditionProperty
Determines the custom condition for an icon set.
Inherited Members
Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnTemplate.ConditionalFormattingCustomIconConditionProperty : CfnTemplate.IConditionalFormattingCustomIconConditionProperty
Syntax (vb)
Public Class CfnTemplate.ConditionalFormattingCustomIconConditionProperty Implements CfnTemplate.IConditionalFormattingCustomIconConditionProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.QuickSight;
var conditionalFormattingCustomIconConditionProperty = new ConditionalFormattingCustomIconConditionProperty {
Expression = "expression",
IconOptions = new ConditionalFormattingCustomIconOptionsProperty {
Icon = "icon",
UnicodeIcon = "unicodeIcon"
},
// the properties below are optional
Color = "color",
DisplayConfiguration = new ConditionalFormattingIconDisplayConfigurationProperty {
IconDisplayOption = "iconDisplayOption"
}
};
Synopsis
Constructors
ConditionalFormattingCustomIconConditionProperty() | Determines the custom condition for an icon set. |
Properties
Color | Determines the color of the icon. |
DisplayConfiguration | Determines the icon display configuration. |
Expression | The expression that determines the condition of the icon set. |
IconOptions | Custom icon options for an icon set. |
Constructors
ConditionalFormattingCustomIconConditionProperty()
Determines the custom condition for an icon set.
public ConditionalFormattingCustomIconConditionProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.QuickSight;
var conditionalFormattingCustomIconConditionProperty = new ConditionalFormattingCustomIconConditionProperty {
Expression = "expression",
IconOptions = new ConditionalFormattingCustomIconOptionsProperty {
Icon = "icon",
UnicodeIcon = "unicodeIcon"
},
// the properties below are optional
Color = "color",
DisplayConfiguration = new ConditionalFormattingIconDisplayConfigurationProperty {
IconDisplayOption = "iconDisplayOption"
}
};
Properties
Color
Determines the color of the icon.
public string? Color { get; set; }
Property Value
Remarks
DisplayConfiguration
Determines the icon display configuration.
public object? DisplayConfiguration { get; set; }
Property Value
Remarks
Expression
The expression that determines the condition of the icon set.
public string Expression { get; set; }
Property Value
Remarks
IconOptions
Custom icon options for an icon set.
public object IconOptions { get; set; }