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