Interface CfnDataSet.ColumnToUnpivotProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDataSet.ColumnToUnpivotProperty.Jsii$Proxy
Enclosing class:
CfnDataSet

@Stability(Stable) public static interface CfnDataSet.ColumnToUnpivotProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.quicksight.*;
 ColumnToUnpivotProperty columnToUnpivotProperty = ColumnToUnpivotProperty.builder()
         .columnName("columnName")
         .newValue("newValue")
         .build();
 

See Also: