interface RelationalTableProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnDataSetPropsMixin.RelationalTableProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnDataSetPropsMixin_RelationalTableProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnDataSetPropsMixin.RelationalTableProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnDataSetPropsMixin.RelationalTableProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnDataSetPropsMixin » RelationalTableProperty |
A physical table type for relational data sources.
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 relationalTableProperty: quicksight_mixins.CfnDataSetPropsMixin.RelationalTableProperty = {
catalog: 'catalog',
dataSourceArn: 'dataSourceArn',
inputColumns: [{
id: 'id',
name: 'name',
subType: 'subType',
type: 'type',
}],
name: 'name',
schema: 'schema',
};
Properties
| Name | Type | Description |
|---|---|---|
| catalog? | string | The catalog associated with a table. |
| data | string | The Amazon Resource Name (ARN) for the data source. |
| input | IResolvable | (IResolvable | Input)[] | The column schema of the table. |
| name? | string | The name of the relational table. |
| schema? | string | The schema name. |
catalog?
Type:
string
(optional)
The catalog associated with a table.
dataSourceArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) for the data source.
inputColumns?
Type:
IResolvable | (IResolvable | Input)[]
(optional)
The column schema of the table.
name?
Type:
string
(optional)
The name of the relational table.
schema?
Type:
string
(optional)
The schema name.
This name applies to certain relational database engines.

.NET
Go
Java
Python
TypeScript