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")
.subType("subType")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDataSet.CastColumnTypeOperationPropertystatic final classAn implementation forCfnDataSet.CastColumnTypeOperationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()Column name.default StringWhen 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.New column data type.default StringThe sub data type of the new column.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getColumnName
Column name.- See Also:
-
getNewColumnType
New column data type.- See Also:
-
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.- See Also:
-
getSubType
The sub data type of the new column.Sub types are only available for decimal columns that are part of a SPICE dataset.
- See Also:
-
builder
-