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();