interface PivotConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnDataSetPropsMixin.PivotConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnDataSetPropsMixin_PivotConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnDataSetPropsMixin.PivotConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnDataSetPropsMixin.PivotConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnDataSetPropsMixin » 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 { mixins as quicksight_mixins } from '@aws-cdk/mixins-preview/aws-quicksight';
const pivotConfigurationProperty: quicksight_mixins.CfnDataSetPropsMixin.PivotConfigurationProperty = {
labelColumnName: 'labelColumnName',
pivotedLabels: [{
labelName: 'labelName',
newColumnId: 'newColumnId',
newColumnName: 'newColumnName',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| label | string | The name of the column that contains the labels to be pivoted into separate columns. |
| pivoted | 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.
pivotedLabels?
Type:
IResolvable | (IResolvable | Pivoted)[]
(optional)
The list of specific label values to pivot into separate columns.

.NET
Go
Java
Python
TypeScript