Class CfnTemplate.CustomColorProperty
Determines the color that's applied to a particular data value in a column.
Implements
Inherited Members
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
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
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
Remarks
FieldValue
The data value that the color is applied to.
public string? FieldValue { get; set; }
Property Value
Remarks
SpecialValue
The value of a special data value.
public string? SpecialValue { get; set; }