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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDataSet.ProjectOperationPropertystatic final classAn implementation forCfnDataSet.ProjectOperationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAlias
Alias for this operation.- See Also:
-
getProjectedColumns
Projected columns.- See Also:
-
getSource
The source transform operation that provides input data for column projection.Returns union: either
IResolvableorCfnDataSet.TransformOperationSourceProperty- See Also:
-
builder
-