interface ImportTableOperationSourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnDataSet.ImportTableOperationSourceProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnDataSet_ImportTableOperationSourceProperty |
Java | software.amazon.awscdk.services.quicksight.CfnDataSet.ImportTableOperationSourceProperty |
Python | aws_cdk.aws_quicksight.CfnDataSet.ImportTableOperationSourceProperty |
TypeScript | aws-cdk-lib » aws_quicksight » CfnDataSet » ImportTableOperationSourceProperty |
Specifies the source table and column mappings for an import table operation.
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 importTableOperationSourceProperty: quicksight.CfnDataSet.ImportTableOperationSourceProperty = {
sourceTableId: 'sourceTableId',
// the properties below are optional
columnIdMappings: [{
sourceColumnId: 'sourceColumnId',
targetColumnId: 'targetColumnId',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| source | string | The identifier of the source table to import data from. |
| column | IResolvable | (IResolvable | Data)[] | The mappings between source column identifiers and target column identifiers during the import. |
sourceTableId
Type:
string
The identifier of the source table to import data from.
columnIdMappings?
Type:
IResolvable | (IResolvable | Data)[]
(optional)
The mappings between source column identifiers and target column identifiers during the import.

.NET
Go
Java
Python
TypeScript