interface TablePathElementProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnDataSet.TablePathElementProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnDataSet_TablePathElementProperty |
Java | software.amazon.awscdk.services.quicksight.CfnDataSet.TablePathElementProperty |
Python | aws_cdk.aws_quicksight.CfnDataSet.TablePathElementProperty |
TypeScript | aws-cdk-lib » aws_quicksight » CfnDataSet » TablePathElementProperty |
An element in the hierarchical path to a table within a data source, containing both name and identifier.
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 tablePathElementProperty: quicksight.CfnDataSet.TablePathElementProperty = {
id: 'id',
name: 'name',
};
Properties
| Name | Type | Description |
|---|---|---|
| id? | string | The unique identifier of the path element. |
| name? | string | The name of the path element. |
id?
Type:
string
(optional)
The unique identifier of the path element.
name?
Type:
string
(optional)
The name of the path element.

.NET
Go
Java
Python
TypeScript