interface SaaSTableProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnDataSet.SaaSTableProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnDataSet_SaaSTableProperty |
Java | software.amazon.awscdk.services.quicksight.CfnDataSet.SaaSTableProperty |
Python | aws_cdk.aws_quicksight.CfnDataSet.SaaSTableProperty |
TypeScript | aws-cdk-lib » aws_quicksight » CfnDataSet » SaaSTableProperty |
A table from a Software-as-a-Service (SaaS) data source, including connection details and column definitions.
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 saaSTableProperty: quicksight.CfnDataSet.SaaSTableProperty = {
dataSourceArn: 'dataSourceArn',
inputColumns: [{
name: 'name',
type: 'type',
// the properties below are optional
id: 'id',
subType: 'subType',
}],
tablePath: [{
id: 'id',
name: 'name',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| data | string | The Amazon Resource Name (ARN) of the SaaS data source. |
| input | IResolvable | (IResolvable | Input)[] | The list of input columns available from the SaaS table. |
| table | IResolvable | (IResolvable | Table)[] | The hierarchical path to the table within the SaaS data source. |
dataSourceArn
Type:
string
The Amazon Resource Name (ARN) of the SaaS data source.
inputColumns
Type:
IResolvable | (IResolvable | Input)[]
The list of input columns available from the SaaS table.
tablePath
Type:
IResolvable | (IResolvable | Table)[]
The hierarchical path to the table within the SaaS data source.

.NET
Go
Java
Python
TypeScript