Interface CfnDataSet.ProjectOperationProperty

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

@Stability(Stable) public static interface CfnDataSet.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.services.quicksight.*;
 ProjectOperationProperty projectOperationProperty = ProjectOperationProperty.builder()
         .alias("alias")
         .projectedColumns(List.of("projectedColumns"))
         .source(TransformOperationSourceProperty.builder()
                 .transformOperationId("transformOperationId")
                 // the properties below are optional
                 .columnIdMappings(List.of(DataSetColumnIdMappingProperty.builder()
                         .sourceColumnId("sourceColumnId")
                         .targetColumnId("targetColumnId")
                         .build()))
                 .build())
         .build();
 

See Also: