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

.NET
Go
Java
Python
TypeScript