Show / Hide Table of Contents

Class CfnTemplate.KPIPrimaryValueConditionalFormattingProperty

The conditional formatting for the primary value of a KPI visual.

Inheritance
object
CfnTemplate.KPIPrimaryValueConditionalFormattingProperty
Implements
CfnTemplate.IKPIPrimaryValueConditionalFormattingProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnTemplate.KPIPrimaryValueConditionalFormattingProperty : CfnTemplate.IKPIPrimaryValueConditionalFormattingProperty
Syntax (vb)
Public Class CfnTemplate.KPIPrimaryValueConditionalFormattingProperty Implements CfnTemplate.IKPIPrimaryValueConditionalFormattingProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-kpiprimaryvalueconditionalformatting.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 kPIPrimaryValueConditionalFormattingProperty = new KPIPrimaryValueConditionalFormattingProperty {
                 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

Constructors

KPIPrimaryValueConditionalFormattingProperty()

The conditional formatting for the primary value of a KPI visual.

Properties

Icon

The conditional formatting of the primary value's icon.

TextColor

The conditional formatting of the primary value's text color.

Constructors

KPIPrimaryValueConditionalFormattingProperty()

The conditional formatting for the primary value of a KPI visual.

public KPIPrimaryValueConditionalFormattingProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-kpiprimaryvalueconditionalformatting.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 kPIPrimaryValueConditionalFormattingProperty = new KPIPrimaryValueConditionalFormattingProperty {
                 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"
                     }
                 }
             };

Properties

Icon

The conditional formatting of the primary value's icon.

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

object

Remarks

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

TextColor

The conditional formatting of the primary value's text color.

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

object

Remarks

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

Implements

CfnTemplate.IKPIPrimaryValueConditionalFormattingProperty
Back to top Generated by DocFX