interface TransformOperationSourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.QuickSight.CfnDataSetPropsMixin.TransformOperationSourceProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsquicksight#CfnDataSetPropsMixin_TransformOperationSourceProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.quicksight.CfnDataSetPropsMixin.TransformOperationSourceProperty |
Python | aws_cdk.cfn_property_mixins.aws_quicksight.CfnDataSetPropsMixin.TransformOperationSourceProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_quicksight » 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 { aws_quicksight as quicksight } from '@aws-cdk/cfn-property-mixins';
const transformOperationSourceProperty: quicksight.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