Interface CfnDataSetPropsMixin.TransformOperationSourceProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDataSetPropsMixin.TransformOperationSourceProperty.Jsii$Proxy
- Enclosing class:
CfnDataSetPropsMixin
@Stability(Stable)
public static interface CfnDataSetPropsMixin.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.cfnpropertymixins.services.quicksight.*;
TransformOperationSourceProperty transformOperationSourceProperty = TransformOperationSourceProperty.builder()
.columnIdMappings(List.of(DataSetColumnIdMappingProperty.builder()
.sourceColumnId("sourceColumnId")
.targetColumnId("targetColumnId")
.build()))
.transformOperationId("transformOperationId")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDataSetPropsMixin.TransformOperationSourcePropertystatic final classAn implementation forCfnDataSetPropsMixin.TransformOperationSourceProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getColumnIdMappings
The mappings between source column identifiers and target column identifiers for this transformation.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnDataSetPropsMixin.DataSetColumnIdMappingProperty>- See Also:
-
getTransformOperationId
The identifier of the transform operation that provides input data.- See Also:
-
builder
-