Interface CfnAnalysis.DataPathColorProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAnalysis.DataPathColorProperty.Jsii$Proxy
- Enclosing class:
CfnAnalysis
@Stability(Stable)
public static interface CfnAnalysis.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
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnAnalysis.DataPathColorPropertystatic final classAn implementation forCfnAnalysis.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.Returns union: either
IResolvableorCfnAnalysis.DataPathValueProperty- See Also:
-
getTimeGranularity
The time granularity of the field that the color needs to be applied to.- See Also:
-
builder
-