interface PivotConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnDataSet.PivotConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnDataSet_PivotConfigurationProperty |
Java | software.amazon.awscdk.services.quicksight.CfnDataSet.PivotConfigurationProperty |
Python | aws_cdk.aws_quicksight.CfnDataSet.PivotConfigurationProperty |
TypeScript | aws-cdk-lib » aws_quicksight » CfnDataSet » PivotConfigurationProperty |
Configuration for a pivot operation, specifying which column contains labels and how to pivot them.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_quicksight as quicksight } from 'aws-cdk-lib';
const pivotConfigurationProperty: quicksight.CfnDataSet.PivotConfigurationProperty = {
pivotedLabels: [{
labelName: 'labelName',
newColumnId: 'newColumnId',
newColumnName: 'newColumnName',
}],
// the properties below are optional
labelColumnName: 'labelColumnName',
};
Properties
| Name | Type | Description |
|---|---|---|
| pivoted | IResolvable | (IResolvable | Pivoted)[] | The list of specific label values to pivot into separate columns. |
| label | string | The name of the column that contains the labels to be pivoted into separate columns. |
pivotedLabels
Type:
IResolvable | (IResolvable | Pivoted)[]
The list of specific label values to pivot into separate columns.
labelColumnName?
Type:
string
(optional)
The name of the column that contains the labels to be pivoted into separate columns.

.NET
Go
Java
Python
TypeScript