interface SourceTableProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnDataSet.SourceTableProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnDataSet_SourceTableProperty |
Java | software.amazon.awscdk.services.quicksight.CfnDataSet.SourceTableProperty |
Python | aws_cdk.aws_quicksight.CfnDataSet.SourceTableProperty |
TypeScript | aws-cdk-lib » aws_quicksight » CfnDataSet » SourceTableProperty |
A source table that provides initial data from either a physical table or parent dataset.
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 sourceTableProperty: quicksight.CfnDataSet.SourceTableProperty = {
dataSet: {
dataSetArn: 'dataSetArn',
inputColumns: [{
name: 'name',
type: 'type',
// the properties below are optional
id: 'id',
subType: 'subType',
}],
},
physicalTableId: 'physicalTableId',
};
Properties
| Name | Type | Description |
|---|---|---|
| data | IResolvable | Parent | A parent dataset that serves as the data source instead of a physical table. |
| physical | string | The identifier of the physical table that serves as the data source. |
dataSet?
Type:
IResolvable | Parent
(optional)
A parent dataset that serves as the data source instead of a physical table.
physicalTableId?
Type:
string
(optional)
The identifier of the physical table that serves as the data source.

.NET
Go
Java
Python
TypeScript