Interface CfnDashboard.PivotTableFieldOptionsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDashboard.PivotTableFieldOptionsProperty.Jsii$Proxy
- Enclosing class:
CfnDashboard
@Stability(Stable)
public static interface CfnDashboard.PivotTableFieldOptionsProperty
extends software.amazon.jsii.JsiiSerializable
The field options for a pivot table visual.
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.*;
PivotTableFieldOptionsProperty pivotTableFieldOptionsProperty = PivotTableFieldOptionsProperty.builder()
.collapseStateOptions(List.of(PivotTableFieldCollapseStateOptionProperty.builder()
.target(PivotTableFieldCollapseStateTargetProperty.builder()
.fieldDataPathValues(List.of(DataPathValueProperty.builder()
.dataPathType(DataPathTypeProperty.builder()
.pivotTableDataPathType("pivotTableDataPathType")
.build())
.fieldId("fieldId")
.fieldValue("fieldValue")
.build()))
.fieldId("fieldId")
.build())
// the properties below are optional
.state("state")
.build()))
.dataPathOptions(List.of(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()))
.selectedFieldOptions(List.of(PivotTableFieldOptionProperty.builder()
.fieldId("fieldId")
// the properties below are optional
.customLabel("customLabel")
.visibility("visibility")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDashboard.PivotTableFieldOptionsPropertystatic final classAn implementation forCfnDashboard.PivotTableFieldOptionsProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCollapseStateOptions
The collapse state options for the pivot table field options.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnDashboard.PivotTableFieldCollapseStateOptionProperty>- See Also:
-
getDataPathOptions
The data path options for the pivot table field options.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnDashboard.PivotTableDataPathOptionProperty>- See Also:
-
getSelectedFieldOptions
The selected field options for the pivot table field options.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnDashboard.PivotTableFieldOptionProperty>- See Also:
-
builder
-