Interface CfnDataSetPropsMixin.ProjectOperationProperty

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

@Stability(Stable) public static interface CfnDataSetPropsMixin.ProjectOperationProperty extends software.amazon.jsii.JsiiSerializable
A transform operation that projects columns.

Operations that come after a projection can only refer to projected columns.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cfnpropertymixins.services.quicksight.*;
 ProjectOperationProperty projectOperationProperty = ProjectOperationProperty.builder()
         .alias("alias")
         .projectedColumns(List.of("projectedColumns"))
         .source(TransformOperationSourceProperty.builder()
                 .columnIdMappings(List.of(DataSetColumnIdMappingProperty.builder()
                         .sourceColumnId("sourceColumnId")
                         .targetColumnId("targetColumnId")
                         .build()))
                 .transformOperationId("transformOperationId")
                 .build())
         .build();
 

See Also: