Show / Hide Table of Contents

Class CfnTemplate.ConditionalFormattingIconProperty

The formatting configuration for the icon.

Inheritance
object
CfnTemplate.ConditionalFormattingIconProperty
Implements
CfnTemplate.IConditionalFormattingIconProperty
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.ConditionalFormattingIconProperty : CfnTemplate.IConditionalFormattingIconProperty
Syntax (vb)
Public Class CfnTemplate.ConditionalFormattingIconProperty Implements CfnTemplate.IConditionalFormattingIconProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-conditionalformattingicon.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 conditionalFormattingIconProperty = 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"
                 }
             };

Synopsis

Constructors

ConditionalFormattingIconProperty()

The formatting configuration for the icon.

Properties

CustomCondition

Determines the custom condition for an icon set.

IconSet

Formatting configuration for icon set.

Constructors

ConditionalFormattingIconProperty()

The formatting configuration for the icon.

public ConditionalFormattingIconProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-conditionalformattingicon.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 conditionalFormattingIconProperty = 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"
                 }
             };

Properties

CustomCondition

Determines the custom condition for an icon set.

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

object

Remarks

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

IconSet

Formatting configuration for icon set.

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

object

Remarks

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

Implements

CfnTemplate.IConditionalFormattingIconProperty
Back to top Generated by DocFX