interface PivotTableFieldOptionsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnTemplate.PivotTableFieldOptionsProperty |
Java | software.amazon.awscdk.services.quicksight.CfnTemplate.PivotTableFieldOptionsProperty |
Python | aws_cdk.aws_quicksight.CfnTemplate.PivotTableFieldOptionsProperty |
TypeScript | @aws-cdk/aws-quicksight » CfnTemplate » PivotTableFieldOptionsProperty |
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 * as quicksight from '@aws-cdk/aws-quicksight';
const pivotTableFieldOptionsProperty: quicksight.CfnTemplate.PivotTableFieldOptionsProperty = {
dataPathOptions: [{
dataPathList: [{
fieldId: 'fieldId',
fieldValue: 'fieldValue',
}],
// the properties below are optional
width: 'width',
}],
selectedFieldOptions: [{
fieldId: 'fieldId',
// the properties below are optional
customLabel: 'customLabel',
visibility: 'visibility',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| data | IResolvable | IResolvable | Pivot[] | The data path options for the pivot table field options. |
| selected | IResolvable | IResolvable | Pivot[] | The selected field options for the pivot table field options. |
dataPathOptions?
Type:
IResolvable | IResolvable | Pivot[]
(optional)
The data path options for the pivot table field options.
selectedFieldOptions?
Type:
IResolvable | IResolvable | Pivot[]
(optional)
The selected field options for the pivot table field options.

.NET
Java
Python
TypeScript