Interface CfnDashboard.DataPathColorProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDashboard.DataPathColorProperty.Jsii$Proxy
- Enclosing class:
- CfnDashboard
@Stability(Stable)
public static interface CfnDashboard.DataPathColorProperty
extends software.amazon.jsii.JsiiSerializable
The color map that determines the color options for a particular element.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.quicksight.*;
DataPathColorProperty dataPathColorProperty = DataPathColorProperty.builder()
.color("color")
.element(DataPathValueProperty.builder()
.fieldId("fieldId")
.fieldValue("fieldValue")
.build())
// the properties below are optional
.timeGranularity("timeGranularity")
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDashboard.DataPathColorPropertystatic final classAn implementation forCfnDashboard.DataPathColorProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getColor
The color that needs to be applied to the element. -
getElement
The element that the color needs to be applied to. -
getTimeGranularity
The time granularity of the field that the color needs to be applied to. -
builder
-