Show / Hide Table of Contents

Interface CfnAnalysis.IFilledMapShapeConditionalFormattingProperty

The conditional formatting that determines the shape of the filled map.

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-filledmapshapeconditionalformatting.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 filledMapShapeConditionalFormattingProperty = new FilledMapShapeConditionalFormattingProperty {
                 FieldId = "fieldId",

                 // the properties below are optional
                 Format = new ShapeConditionalFormatProperty {
                     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"
                         }
                     }
                 }
             };

Synopsis

Properties

FieldId

The field ID of the filled map shape.

Format

The conditional formatting that determines the background color of a filled map's shape.

Properties

FieldId

The field ID of the filled map shape.

string FieldId { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-filledmapshapeconditionalformatting.html#cfn-quicksight-analysis-filledmapshapeconditionalformatting-fieldid

Format

The conditional formatting that determines the background color of a filled map's shape.

object? Format { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-filledmapshapeconditionalformatting.html#cfn-quicksight-analysis-filledmapshapeconditionalformatting-format

Back to top Generated by DocFX