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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnAnalysis.PivotTableFieldCollapseStateOptionProperty
static final class
An implementation forCfnAnalysis.PivotTableFieldCollapseStateOptionProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getTarget
A tagged-union object that sets the collapse state. -
getState
The state of the field target of a pivot table. Choose one of the following options:.COLLAPSED
EXPANDED
-
builder
-