Show / Hide Table of Contents

Class CfnDashboardPropsMixin.TextConditionalFormatProperty

The conditional formatting for the text.

Inheritance
object
CfnDashboardPropsMixin.TextConditionalFormatProperty
Implements
CfnDashboardPropsMixin.ITextConditionalFormatProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnDashboardPropsMixin.TextConditionalFormatProperty : CfnDashboardPropsMixin.ITextConditionalFormatProperty
Syntax (vb)
Public Class CfnDashboardPropsMixin.TextConditionalFormatProperty Implements CfnDashboardPropsMixin.ITextConditionalFormatProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-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.Mixins.Preview.AWS.QuickSight.Mixins;

             var textConditionalFormatProperty = new TextConditionalFormatProperty {
                 BackgroundColor = new ConditionalFormattingColorProperty {
                     Gradient = new ConditionalFormattingGradientColorProperty {
                         Color = new GradientColorProperty {
                             Stops = new [] { new GradientStopProperty {
                                 Color = "color",
                                 DataValue = 123,
                                 GradientOffset = 123
                             } }
                         },
                         Expression = "expression"
                     },
                     Solid = new ConditionalFormattingSolidColorProperty {
                         Color = "color",
                         Expression = "expression"
                     }
                 },
                 Icon = new ConditionalFormattingIconProperty {
                     CustomCondition = new ConditionalFormattingCustomIconConditionProperty {
                         Color = "color",
                         DisplayConfiguration = new ConditionalFormattingIconDisplayConfigurationProperty {
                             IconDisplayOption = "iconDisplayOption"
                         },
                         Expression = "expression",
                         IconOptions = new ConditionalFormattingCustomIconOptionsProperty {
                             Icon = "icon",
                             UnicodeIcon = "unicodeIcon"
                         }
                     },
                     IconSet = new ConditionalFormattingIconSetProperty {
                         Expression = "expression",
                         IconSetType = "iconSetType"
                     }
                 },
                 TextColor = new ConditionalFormattingColorProperty {
                     Gradient = new ConditionalFormattingGradientColorProperty {
                         Color = new GradientColorProperty {
                             Stops = new [] { new GradientStopProperty {
                                 Color = "color",
                                 DataValue = 123,
                                 GradientOffset = 123
                             } }
                         },
                         Expression = "expression"
                     },
                     Solid = new ConditionalFormattingSolidColorProperty {
                         Color = "color",
                         Expression = "expression"
                     }
                 }
             };

Synopsis

Constructors

TextConditionalFormatProperty()

The conditional formatting for the text.

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.

Constructors

TextConditionalFormatProperty()

The conditional formatting for the text.

public TextConditionalFormatProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-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.Mixins.Preview.AWS.QuickSight.Mixins;

             var textConditionalFormatProperty = new TextConditionalFormatProperty {
                 BackgroundColor = new ConditionalFormattingColorProperty {
                     Gradient = new ConditionalFormattingGradientColorProperty {
                         Color = new GradientColorProperty {
                             Stops = new [] { new GradientStopProperty {
                                 Color = "color",
                                 DataValue = 123,
                                 GradientOffset = 123
                             } }
                         },
                         Expression = "expression"
                     },
                     Solid = new ConditionalFormattingSolidColorProperty {
                         Color = "color",
                         Expression = "expression"
                     }
                 },
                 Icon = new ConditionalFormattingIconProperty {
                     CustomCondition = new ConditionalFormattingCustomIconConditionProperty {
                         Color = "color",
                         DisplayConfiguration = new ConditionalFormattingIconDisplayConfigurationProperty {
                             IconDisplayOption = "iconDisplayOption"
                         },
                         Expression = "expression",
                         IconOptions = new ConditionalFormattingCustomIconOptionsProperty {
                             Icon = "icon",
                             UnicodeIcon = "unicodeIcon"
                         }
                     },
                     IconSet = new ConditionalFormattingIconSetProperty {
                         Expression = "expression",
                         IconSetType = "iconSetType"
                     }
                 },
                 TextColor = new ConditionalFormattingColorProperty {
                     Gradient = new ConditionalFormattingGradientColorProperty {
                         Color = new GradientColorProperty {
                             Stops = new [] { new GradientStopProperty {
                                 Color = "color",
                                 DataValue = 123,
                                 GradientOffset = 123
                             } }
                         },
                         Expression = "expression"
                     },
                     Solid = new ConditionalFormattingSolidColorProperty {
                         Color = "color",
                         Expression = "expression"
                     }
                 }
             };

Properties

BackgroundColor

The conditional formatting for the text background color.

public object? BackgroundColor { get; set; }
Property Value

object

Remarks

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

Type union: either IResolvable or CfnDashboardPropsMixin.IConditionalFormattingColorProperty

Icon

The conditional formatting for the icon.

public object? Icon { get; set; }
Property Value

object

Remarks

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

Type union: either IResolvable or CfnDashboardPropsMixin.IConditionalFormattingIconProperty

TextColor

The conditional formatting for the text color.

public object? TextColor { get; set; }
Property Value

object

Remarks

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

Type union: either IResolvable or CfnDashboardPropsMixin.IConditionalFormattingColorProperty

Implements

CfnDashboardPropsMixin.ITextConditionalFormatProperty
Back to top Generated by DocFX