Class CfnTemplatePropsMixin.DataPathColorProperty
The color map that determines the color options for a particular element.
Implements
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnTemplatePropsMixin.DataPathColorProperty : CfnTemplatePropsMixin.IDataPathColorProperty
Syntax (vb)
Public Class CfnTemplatePropsMixin.DataPathColorProperty Implements CfnTemplatePropsMixin.IDataPathColorProperty
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.Mixins.Preview.AWS.QuickSight.Mixins;
var dataPathColorProperty = new DataPathColorProperty {
Color = "color",
Element = new DataPathValueProperty {
DataPathType = new DataPathTypeProperty {
PivotTableDataPathType = "pivotTableDataPathType"
},
FieldId = "fieldId",
FieldValue = "fieldValue"
},
TimeGranularity = "timeGranularity"
};
Synopsis
Constructors
| DataPathColorProperty() | The color map that determines the color options for a particular element. |
Properties
| Color | The color that needs to be applied to the element. |
| Element | The element that the color needs to be applied to. |
| TimeGranularity | The time granularity of the field that the color needs to be applied to. |
Constructors
DataPathColorProperty()
The color map that determines the color options for a particular element.
public DataPathColorProperty()
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.Mixins.Preview.AWS.QuickSight.Mixins;
var dataPathColorProperty = new DataPathColorProperty {
Color = "color",
Element = new DataPathValueProperty {
DataPathType = new DataPathTypeProperty {
PivotTableDataPathType = "pivotTableDataPathType"
},
FieldId = "fieldId",
FieldValue = "fieldValue"
},
TimeGranularity = "timeGranularity"
};
Properties
Color
The color that needs to be applied to the element.
public string? Color { get; set; }
Property Value
Remarks
Element
The element that the color needs to be applied to.
public object? Element { get; set; }
Property Value
Remarks
TimeGranularity
The time granularity of the field that the color needs to be applied to.
public string? TimeGranularity { get; set; }