Interface CfnDataSet.RenameColumnOperationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDataSet.RenameColumnOperationProperty.Jsii$Proxy
- Enclosing class:
CfnDataSet
@Stability(Stable)
public static interface CfnDataSet.RenameColumnOperationProperty
extends software.amazon.jsii.JsiiSerializable
A transform operation that renames a column.
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.*;
RenameColumnOperationProperty renameColumnOperationProperty = RenameColumnOperationProperty.builder()
.columnName("columnName")
.newColumnName("newColumnName")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDataSet.RenameColumnOperationPropertystatic final classAn implementation forCfnDataSet.RenameColumnOperationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The name of the column to be renamed.The new name for the column.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getColumnName
The name of the column to be renamed.- See Also:
-
getNewColumnName
The new name for the column.- See Also:
-
builder
-