interface PivotConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.QuickSight.CfnDataSetPropsMixin.PivotConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsquicksight#CfnDataSetPropsMixin_PivotConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.quicksight.CfnDataSetPropsMixin.PivotConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_quicksight.CfnDataSetPropsMixin.PivotConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_quicksight » 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 { aws_quicksight as quicksight } from '@aws-cdk/cfn-property-mixins';
const pivotConfigurationProperty: quicksight.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