Interface CfnDashboard.PivotTableFieldCollapseStateTargetProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDashboard.PivotTableFieldCollapseStateTargetProperty.Jsii$Proxy
Enclosing class:
CfnDashboard

@Stability(Stable) public static interface CfnDashboard.PivotTableFieldCollapseStateTargetProperty extends software.amazon.jsii.JsiiSerializable
The target of a pivot table field collapse state.

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.*;
 PivotTableFieldCollapseStateTargetProperty pivotTableFieldCollapseStateTargetProperty = PivotTableFieldCollapseStateTargetProperty.builder()
         .fieldDataPathValues(List.of(DataPathValueProperty.builder()
                 .dataPathType(DataPathTypeProperty.builder()
                         .pivotTableDataPathType("pivotTableDataPathType")
                         .build())
                 .fieldId("fieldId")
                 .fieldValue("fieldValue")
                 .build()))
         .fieldId("fieldId")
         .build();
 

See Also: