Interface CfnAnalysis.PivotTableFieldCollapseStateOptionProperty

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

@Stability(Stable) public static interface CfnAnalysis.PivotTableFieldCollapseStateOptionProperty extends software.amazon.jsii.JsiiSerializable
The collapse state 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.*;
 PivotTableFieldCollapseStateOptionProperty pivotTableFieldCollapseStateOptionProperty = 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();
 

See Also: