Interface CfnDataSet.TransformOperationSourceProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDataSet.TransformOperationSourceProperty.Jsii$Proxy
Enclosing class:
CfnDataSet

@Stability(Stable) public static interface CfnDataSet.TransformOperationSourceProperty extends software.amazon.jsii.JsiiSerializable
Specifies the source of data for a transform operation, including the source operation and column mappings.

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.*;
 TransformOperationSourceProperty transformOperationSourceProperty = TransformOperationSourceProperty.builder()
         .transformOperationId("transformOperationId")
         // the properties below are optional
         .columnIdMappings(List.of(DataSetColumnIdMappingProperty.builder()
                 .sourceColumnId("sourceColumnId")
                 .targetColumnId("targetColumnId")
                 .build()))
         .build();
 

See Also: