interface TablePathElementProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.QuickSight.CfnDataSetPropsMixin.TablePathElementProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsquicksight#CfnDataSetPropsMixin_TablePathElementProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.quicksight.CfnDataSetPropsMixin.TablePathElementProperty |
Python | aws_cdk.cfn_property_mixins.aws_quicksight.CfnDataSetPropsMixin.TablePathElementProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_quicksight » CfnDataSetPropsMixin » 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/cfn-property-mixins';
const tablePathElementProperty: quicksight.CfnDataSetPropsMixin.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