Interface CfnTemplate.PivotTableFieldOptionsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTemplate.PivotTableFieldOptionsProperty.Jsii$Proxy
- Enclosing class:
CfnTemplate
@Stability(Stable)
public static interface CfnTemplate.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() .dataPathOptions(List.of(PivotTableDataPathOptionProperty.builder() .dataPathList(List.of(DataPathValueProperty.builder() .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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnTemplate.PivotTableFieldOptionsProperty
static final class
An implementation forCfnTemplate.PivotTableFieldOptionsProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDataPathOptions
The data path options for the pivot table field options. -
getSelectedFieldOptions
The selected field options for the pivot table field options. -
builder
-