interface PivotTableFieldCollapseStateTargetProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnAnalysisPropsMixin.PivotTableFieldCollapseStateTargetProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnAnalysisPropsMixin_PivotTableFieldCollapseStateTargetProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnAnalysisPropsMixin.PivotTableFieldCollapseStateTargetProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnAnalysisPropsMixin.PivotTableFieldCollapseStateTargetProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnAnalysisPropsMixin » PivotTableFieldCollapseStateTargetProperty |
The target of a pivot table field collapse state.
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 pivotTableFieldCollapseStateTargetProperty: quicksight_mixins.CfnAnalysisPropsMixin.PivotTableFieldCollapseStateTargetProperty = {
fieldDataPathValues: [{
dataPathType: {
pivotTableDataPathType: 'pivotTableDataPathType',
},
fieldId: 'fieldId',
fieldValue: 'fieldValue',
}],
fieldId: 'fieldId',
};
Properties
| Name | Type | Description |
|---|---|---|
| field | IResolvable | (IResolvable | Data)[] | The data path of the pivot table's header. |
| field | string | The field ID of the pivot table that the collapse state needs to be set to. |
fieldDataPathValues?
Type:
IResolvable | (IResolvable | Data)[]
(optional)
The data path of the pivot table's header.
Used to set the collapse state.
fieldId?
Type:
string
(optional)
The field ID of the pivot table that the collapse state needs to be set to.

.NET
Go
Java
Python
TypeScript