interface PivotTableFieldCollapseStateOptionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnAnalysisPropsMixin.PivotTableFieldCollapseStateOptionProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnAnalysisPropsMixin_PivotTableFieldCollapseStateOptionProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnAnalysisPropsMixin.PivotTableFieldCollapseStateOptionProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnAnalysisPropsMixin.PivotTableFieldCollapseStateOptionProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnAnalysisPropsMixin » PivotTableFieldCollapseStateOptionProperty |
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 { mixins as quicksight_mixins } from '@aws-cdk/mixins-preview/aws-quicksight';
const pivotTableFieldCollapseStateOptionProperty: quicksight_mixins.CfnAnalysisPropsMixin.PivotTableFieldCollapseStateOptionProperty = {
state: 'state',
target: {
fieldDataPathValues: [{
dataPathType: {
pivotTableDataPathType: 'pivotTableDataPathType',
},
fieldId: 'fieldId',
fieldValue: 'fieldValue',
}],
fieldId: 'fieldId',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| state? | string | The state of the field target of a pivot table. Choose one of the following options:. |
| target? | IResolvable | Pivot | A tagged-union object that sets the collapse state. |
state?
Type:
string
(optional)
The state of the field target of a pivot table. Choose one of the following options:.
COLLAPSEDEXPANDED
target?
Type:
IResolvable | Pivot
(optional)
A tagged-union object that sets the collapse state.

.NET
Go
Java
Python
TypeScript