Interface CfnTemplate.PivotTableFieldCollapseStateOptionProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTemplate.PivotTableFieldCollapseStateOptionProperty.Jsii$Proxy
- Enclosing class:
CfnTemplate
@Stability(Stable)
public static interface CfnTemplate.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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTemplate.PivotTableFieldCollapseStateOptionPropertystatic final classAn implementation forCfnTemplate.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.Returns union: either
IResolvableorCfnTemplate.PivotTableFieldCollapseStateTargetProperty- See Also:
-
getState
The state of the field target of a pivot table. Choose one of the following options:.COLLAPSEDEXPANDED
- See Also:
-
builder
-