interface SourceTableProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnDataSetPropsMixin.SourceTableProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnDataSetPropsMixin_SourceTableProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnDataSetPropsMixin.SourceTableProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnDataSetPropsMixin.SourceTableProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnDataSetPropsMixin » 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 { mixins as quicksight_mixins } from '@aws-cdk/mixins-preview/aws-quicksight';
const sourceTableProperty: quicksight_mixins.CfnDataSetPropsMixin.SourceTableProperty = {
dataSet: {
dataSetArn: 'dataSetArn',
inputColumns: [{
id: 'id',
name: 'name',
subType: 'subType',
type: 'type',
}],
},
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