aws-cdk-lib.aws_quicksight.CfnDataSet.RelationalTableProperty

interface RelationalTableProperty

LanguageType name
.NETAmazon.CDK.AWS.QuickSight.CfnDataSet.RelationalTableProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnDataSet_RelationalTableProperty
Javasoftware.amazon.awscdk.services.quicksight.CfnDataSet.RelationalTableProperty
Pythonaws_cdk.aws_quicksight.CfnDataSet.RelationalTableProperty
TypeScript aws-cdk-lib » aws_quicksight » CfnDataSet » 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 { aws_quicksight as quicksight } from 'aws-cdk-lib';
const relationalTableProperty: quicksight.CfnDataSet.RelationalTableProperty = {
  dataSourceArn: 'dataSourceArn',
  inputColumns: [{
    name: 'name',
    type: 'type',
  }],
  name: 'name',

  // the properties below are optional
  catalog: 'catalog',
  schema: 'schema',
};

Properties

NameTypeDescription
dataSourceArnstringThe Amazon Resource Name (ARN) for the data source.
inputColumnsIResolvable | IResolvable | InputColumnProperty[]The column schema of the table.
namestringThe name of the relational table.
catalog?stringCfnDataSet.RelationalTableProperty.Catalog.
schema?stringThe schema name.

dataSourceArn

Type: string

The Amazon Resource Name (ARN) for the data source.


inputColumns

Type: IResolvable | IResolvable | InputColumnProperty[]

The column schema of the table.


name

Type: string

The name of the relational table.


catalog?

Type: string (optional)

CfnDataSet.RelationalTableProperty.Catalog.


schema?

Type: string (optional)

The schema name.

This name applies to certain relational database engines.