Show / Hide Table of Contents

Class CfnTemplate.CustomColorProperty

Determines the color that's applied to a particular data value in a column.

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-customcolor.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 customColorProperty = new CustomColorProperty {
                 Color = "color",

                 // the properties below are optional
                 FieldValue = "fieldValue",
                 SpecialValue = "specialValue"
             };

Synopsis

Constructors

CustomColorProperty()

Determines the color that's applied to a particular data value in a column.

Properties

Color

The color that is applied to the data value.

FieldValue

The data value that the color is applied to.

SpecialValue

The value of a special data value.

Constructors

CustomColorProperty()

Determines the color that's applied to a particular data value in a column.

public CustomColorProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-customcolor.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 customColorProperty = new CustomColorProperty {
                 Color = "color",

                 // the properties below are optional
                 FieldValue = "fieldValue",
                 SpecialValue = "specialValue"
             };

Properties

Color

The color that is applied to the data value.

public string Color { get; set; }
Property Value

string

Remarks

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

FieldValue

The data value that the color is applied to.

public string? FieldValue { get; set; }
Property Value

string

Remarks

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

SpecialValue

The value of a special data value.

public string? SpecialValue { get; set; }
Property Value

string

Remarks

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

Implements

CfnTemplate.ICustomColorProperty
Back to top Generated by DocFX