interface TransformOperationSourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnDataSet.TransformOperationSourceProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnDataSet_TransformOperationSourceProperty |
Java | software.amazon.awscdk.services.quicksight.CfnDataSet.TransformOperationSourceProperty |
Python | aws_cdk.aws_quicksight.CfnDataSet.TransformOperationSourceProperty |
TypeScript | aws-cdk-lib » aws_quicksight » CfnDataSet » TransformOperationSourceProperty |
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 { aws_quicksight as quicksight } from 'aws-cdk-lib';
const transformOperationSourceProperty: quicksight.CfnDataSet.TransformOperationSourceProperty = {
transformOperationId: 'transformOperationId',
// the properties below are optional
columnIdMappings: [{
sourceColumnId: 'sourceColumnId',
targetColumnId: 'targetColumnId',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| transform | string | The identifier of the transform operation that provides input data. |
| column | IResolvable | (IResolvable | Data)[] | The mappings between source column identifiers and target column identifiers for this transformation. |
transformOperationId
Type:
string
The identifier of the transform operation that provides input data.
columnIdMappings?
Type:
IResolvable | (IResolvable | Data)[]
(optional)
The mappings between source column identifiers and target column identifiers for this transformation.

.NET
Go
Java
Python
TypeScript