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() .dataPathType(DataPathTypeProperty.builder() .pivotTableDataPathType("pivotTableDataPathType") .build()) .fieldId("fieldId") .fieldValue("fieldValue") .build()) // the properties below are optional .timeGranularity("timeGranularity") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnDashboard.DataPathColorProperty
static final class
An 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.- See Also:
-
getElement
The element that the color needs to be applied to.- See Also:
-
getTimeGranularity
The time granularity of the field that the color needs to be applied to.- See Also:
-
builder
-