Show / Hide Table of Contents

Interface CfnTemplate.ITextConditionalFormatProperty

The conditional formatting for the text.

Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnTemplate.ITextConditionalFormatProperty
Syntax (vb)
Public Interface CfnTemplate.ITextConditionalFormatProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-textconditionalformat.html

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 textConditionalFormatProperty = new TextConditionalFormatProperty {
                 BackgroundColor = new ConditionalFormattingColorProperty {
                     Gradient = new ConditionalFormattingGradientColorProperty {
                         Color = new GradientColorProperty {
                             Stops = new [] { new GradientStopProperty {
                                 GradientOffset = 123,

                                 // the properties below are optional
                                 Color = "color",
                                 DataValue = 123
                             } }
                         },
                         Expression = "expression"
                     },
                     Solid = new ConditionalFormattingSolidColorProperty {
                         Expression = "expression",

                         // the properties below are optional
                         Color = "color"
                     }
                 },
                 Icon = new ConditionalFormattingIconProperty {
                     CustomCondition = new ConditionalFormattingCustomIconConditionProperty {
                         Expression = "expression",
                         IconOptions = new ConditionalFormattingCustomIconOptionsProperty {
                             Icon = "icon",
                             UnicodeIcon = "unicodeIcon"
                         },

                         // the properties below are optional
                         Color = "color",
                         DisplayConfiguration = new ConditionalFormattingIconDisplayConfigurationProperty {
                             IconDisplayOption = "iconDisplayOption"
                         }
                     },
                     IconSet = new ConditionalFormattingIconSetProperty {
                         Expression = "expression",

                         // the properties below are optional
                         IconSetType = "iconSetType"
                     }
                 },
                 TextColor = new ConditionalFormattingColorProperty {
                     Gradient = new ConditionalFormattingGradientColorProperty {
                         Color = new GradientColorProperty {
                             Stops = new [] { new GradientStopProperty {
                                 GradientOffset = 123,

                                 // the properties below are optional
                                 Color = "color",
                                 DataValue = 123
                             } }
                         },
                         Expression = "expression"
                     },
                     Solid = new ConditionalFormattingSolidColorProperty {
                         Expression = "expression",

                         // the properties below are optional
                         Color = "color"
                     }
                 }
             };

Synopsis

Properties

BackgroundColor

The conditional formatting for the text background color.

Icon

The conditional formatting for the icon.

TextColor

The conditional formatting for the text color.

Properties

BackgroundColor

The conditional formatting for the text background color.

object? BackgroundColor { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-textconditionalformat.html#cfn-quicksight-template-textconditionalformat-backgroundcolor

Icon

The conditional formatting for the icon.

object? Icon { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-textconditionalformat.html#cfn-quicksight-template-textconditionalformat-icon

TextColor

The conditional formatting for the text color.

object? TextColor { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-textconditionalformat.html#cfn-quicksight-template-textconditionalformat-textcolor

Back to top Generated by DocFX