Class CfnDataSetPropsMixin.ColumnToUnpivotProperty
Specifies a column to be unpivoted, transforming it from a column into rows with associated values.
Implements
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnDataSetPropsMixin.ColumnToUnpivotProperty : CfnDataSetPropsMixin.IColumnToUnpivotProperty
Syntax (vb)
Public Class CfnDataSetPropsMixin.ColumnToUnpivotProperty Implements CfnDataSetPropsMixin.IColumnToUnpivotProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins;
var columnToUnpivotProperty = new ColumnToUnpivotProperty {
ColumnName = "columnName",
NewValue = "newValue"
};
Synopsis
Constructors
| ColumnToUnpivotProperty() | Specifies a column to be unpivoted, transforming it from a column into rows with associated values. |
Properties
| ColumnName | The name of the column to unpivot from the source data. |
| NewValue | The value to assign to this column in the unpivoted result, typically the column name or a descriptive label. |
Constructors
ColumnToUnpivotProperty()
Specifies a column to be unpivoted, transforming it from a column into rows with associated values.
public ColumnToUnpivotProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins;
var columnToUnpivotProperty = new ColumnToUnpivotProperty {
ColumnName = "columnName",
NewValue = "newValue"
};
Properties
ColumnName
The name of the column to unpivot from the source data.
public string? ColumnName { get; set; }
Property Value
Remarks
NewValue
The value to assign to this column in the unpivoted result, typically the column name or a descriptive label.
public string? NewValue { get; set; }