Show / Hide Table of Contents

Interface CfnTemplatePropsMixin.ITableConditionalFormattingProperty

The conditional formatting for a PivotTableVisual .

Namespace: Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public interface CfnTemplatePropsMixin.ITableConditionalFormattingProperty
Syntax (vb)
Public Interface CfnTemplatePropsMixin.ITableConditionalFormattingProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-tableconditionalformatting.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 tableConditionalFormattingProperty = new TableConditionalFormattingProperty {
                 ConditionalFormattingOptions = new [] { new TableConditionalFormattingOptionProperty {
                     Cell = new TableCellConditionalFormattingProperty {
                         FieldId = "fieldId",
                         TextFormat = 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"
                                 }
                             }
                         }
                     },
                     Row = new TableRowConditionalFormattingProperty {
                         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"
                             }
                         },
                         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

Properties

ConditionalFormattingOptions

Conditional formatting options for a PivotTableVisual .

Properties

ConditionalFormattingOptions

Conditional formatting options for a PivotTableVisual .

object? ConditionalFormattingOptions { get; }
Property Value

object

Remarks

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

Type union: either IResolvable or (either IResolvable or CfnTemplatePropsMixin.ITableConditionalFormattingOptionProperty)[]

Back to top Generated by DocFX