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: