Interface CfnDataSetPropsMixin.ColumnToUnpivotProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDataSetPropsMixin.ColumnToUnpivotProperty.Jsii$Proxy
- Enclosing class:
CfnDataSetPropsMixin
@Stability(Stable)
public static interface CfnDataSetPropsMixin.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.cfnpropertymixins.services.quicksight.*;
ColumnToUnpivotProperty columnToUnpivotProperty = ColumnToUnpivotProperty.builder()
.columnName("columnName")
.newValue("newValue")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDataSetPropsMixin.ColumnToUnpivotPropertystatic final classAn implementation forCfnDataSetPropsMixin.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
-