interface ColumnToUnpivotProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnDataSet.ColumnToUnpivotProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnDataSet_ColumnToUnpivotProperty |
Java | software.amazon.awscdk.services.quicksight.CfnDataSet.ColumnToUnpivotProperty |
Python | aws_cdk.aws_quicksight.CfnDataSet.ColumnToUnpivotProperty |
TypeScript | aws-cdk-lib » aws_quicksight » CfnDataSet » ColumnToUnpivotProperty |
Specifies a column to be unpivoted, transforming it from a column into rows with associated values.
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 columnToUnpivotProperty: quicksight.CfnDataSet.ColumnToUnpivotProperty = {
columnName: 'columnName',
newValue: 'newValue',
};
Properties
| Name | Type | Description |
|---|---|---|
| column | string | The name of the column to unpivot from the source data. |
| new | string | The value to assign to this column in the unpivoted result, typically the column name or a descriptive label. |
columnName?
Type:
string
(optional)
The name of the column to unpivot from the source data.
newValue?
Type:
string
(optional)
The value to assign to this column in the unpivoted result, typically the column name or a descriptive label.

.NET
Go
Java
Python
TypeScript