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