interface ImportTableOperationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnDataSet.ImportTableOperationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnDataSet_ImportTableOperationProperty |
Java | software.amazon.awscdk.services.quicksight.CfnDataSet.ImportTableOperationProperty |
Python | aws_cdk.aws_quicksight.CfnDataSet.ImportTableOperationProperty |
TypeScript | aws-cdk-lib » aws_quicksight » CfnDataSet » ImportTableOperationProperty |
A transform operation that imports data from a source table.
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 importTableOperationProperty: quicksight.CfnDataSet.ImportTableOperationProperty = {
alias: 'alias',
source: {
sourceTableId: 'sourceTableId',
// the properties below are optional
columnIdMappings: [{
sourceColumnId: 'sourceColumnId',
targetColumnId: 'targetColumnId',
}],
},
};
Properties
| Name | Type | Description |
|---|---|---|
| alias | string | Alias for this operation. |
| source | IResolvable | Import | The source configuration that specifies which source table to import and any column mappings. |
alias
Type:
string
Alias for this operation.
source
Type:
IResolvable | Import
The source configuration that specifies which source table to import and any column mappings.

.NET
Go
Java
Python
TypeScript