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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDataSet.ColumnToUnpivotPropertystatic final classAn implementation forCfnDataSet.ColumnToUnpivotProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getColumnName
The name of the column to unpivot from the source data.- See Also:
-
getNewValue
The value to assign to this column in the unpivoted result, typically the column name or a descriptive label.- See Also:
-
builder
-