Class CfnDashboardPropsMixin.ColorsConfigurationProperty
The color configurations for a column.
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.QuickSight
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnDashboardPropsMixin.ColorsConfigurationProperty : CfnDashboardPropsMixin.IColorsConfigurationProperty
Syntax (vb)
Public Class CfnDashboardPropsMixin.ColorsConfigurationProperty Implements CfnDashboardPropsMixin.IColorsConfigurationProperty
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.CfnPropertyMixins.AWS.QuickSight;
var colorsConfigurationProperty = new ColorsConfigurationProperty {
CustomColors = new [] { new CustomColorProperty {
Color = "color",
FieldValue = "fieldValue",
SpecialValue = "specialValue"
} }
};
Synopsis
Constructors
| ColorsConfigurationProperty() | The color configurations for a column. |
Properties
| CustomColors | A list of up to 50 custom colors. |
Constructors
ColorsConfigurationProperty()
The color configurations for a column.
public ColorsConfigurationProperty()
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.CfnPropertyMixins.AWS.QuickSight;
var colorsConfigurationProperty = new ColorsConfigurationProperty {
CustomColors = new [] { new CustomColorProperty {
Color = "color",
FieldValue = "fieldValue",
SpecialValue = "specialValue"
} }
};
Properties
CustomColors
A list of up to 50 custom colors.
public object? CustomColors { get; set; }