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

.NET
Go
Java
Python
TypeScript