Interface CfnDataSet.CastColumnTypeOperationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDataSet.CastColumnTypeOperationProperty.Jsii$Proxy
- Enclosing class:
CfnDataSet
@Stability(Stable)
public static interface CfnDataSet.CastColumnTypeOperationProperty
extends software.amazon.jsii.JsiiSerializable
A transform operation that casts a column to a different type.
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.*;
CastColumnTypeOperationProperty castColumnTypeOperationProperty = CastColumnTypeOperationProperty.builder()
.columnName("columnName")
.newColumnType("newColumnType")
// the properties below are optional
.format("format")
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDataSet.CastColumnTypeOperationPropertystatic final classAn implementation forCfnDataSet.CastColumnTypeOperationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getColumnName
Column name. -
getNewColumnType
New column data type. -
getFormat
When casting a column from string to datetime type, you can supply a string in a format supported by Amazon QuickSight to denote the source data format. -
builder
-