Interface CfnDashboard.PivotTableDataPathOptionProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDashboard.PivotTableDataPathOptionProperty.Jsii$Proxy
- Enclosing class:
CfnDashboard
@Stability(Stable)
public static interface CfnDashboard.PivotTableDataPathOptionProperty
extends software.amazon.jsii.JsiiSerializable
The data path options for the pivot table field options.
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.*;
PivotTableDataPathOptionProperty pivotTableDataPathOptionProperty = PivotTableDataPathOptionProperty.builder()
.dataPathList(List.of(DataPathValueProperty.builder()
.dataPathType(DataPathTypeProperty.builder()
.pivotTableDataPathType("pivotTableDataPathType")
.build())
.fieldId("fieldId")
.fieldValue("fieldValue")
.build()))
// the properties below are optional
.width("width")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDashboard.PivotTableDataPathOptionPropertystatic final classAn implementation forCfnDashboard.PivotTableDataPathOptionProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDataPathList
The list of data path values for the data path options.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnDashboard.DataPathValueProperty>- See Also:
-
getWidth
The width of the data path option.- See Also:
-
builder
-