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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDataSet.TransformOperationSourcePropertystatic final classAn implementation forCfnDataSet.TransformOperationSourceProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getTransformOperationId
The identifier of the transform operation that provides input data.- See Also:
-
getColumnIdMappings
The mappings between source column identifiers and target column identifiers for this transformation.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnDataSet.DataSetColumnIdMappingProperty>- See Also:
-
builder
-