interface SaaSTableProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnDataSetPropsMixin.SaaSTableProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnDataSetPropsMixin_SaaSTableProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnDataSetPropsMixin.SaaSTableProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnDataSetPropsMixin.SaaSTableProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnDataSetPropsMixin » 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 { mixins as quicksight_mixins } from '@aws-cdk/mixins-preview/aws-quicksight';
const saaSTableProperty: quicksight_mixins.CfnDataSetPropsMixin.SaaSTableProperty = {
dataSourceArn: 'dataSourceArn',
inputColumns: [{
id: 'id',
name: 'name',
subType: 'subType',
type: 'type',
}],
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
(optional)
The Amazon Resource Name (ARN) of the SaaS data source.
inputColumns?
Type:
IResolvable | (IResolvable | Input)[]
(optional)
The list of input columns available from the SaaS table.
tablePath?
Type:
IResolvable | (IResolvable | Table)[]
(optional)
The hierarchical path to the table within the SaaS data source.

.NET
Go
Java
Python
TypeScript