Interface CfnDataSet.AppendOperationProperty

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

@Stability(Stable) public static interface CfnDataSet.AppendOperationProperty extends software.amazon.jsii.JsiiSerializable
A transform operation that combines rows from two data sources by stacking them vertically (union operation).

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.*;
 AppendOperationProperty appendOperationProperty = AppendOperationProperty.builder()
         .alias("alias")
         .appendedColumns(List.of(AppendedColumnProperty.builder()
                 .columnName("columnName")
                 .newColumnId("newColumnId")
                 .build()))
         // the properties below are optional
         .firstSource(TransformOperationSourceProperty.builder()
                 .transformOperationId("transformOperationId")
                 // the properties below are optional
                 .columnIdMappings(List.of(DataSetColumnIdMappingProperty.builder()
                         .sourceColumnId("sourceColumnId")
                         .targetColumnId("targetColumnId")
                         .build()))
                 .build())
         .secondSource(TransformOperationSourceProperty.builder()
                 .transformOperationId("transformOperationId")
                 // the properties below are optional
                 .columnIdMappings(List.of(DataSetColumnIdMappingProperty.builder()
                         .sourceColumnId("sourceColumnId")
                         .targetColumnId("targetColumnId")
                         .build()))
                 .build())
         .build();
 

See Also: