interface SemanticTableProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnDataSet.SemanticTableProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnDataSet_SemanticTableProperty |
Java | software.amazon.awscdk.services.quicksight.CfnDataSet.SemanticTableProperty |
Python | aws_cdk.aws_quicksight.CfnDataSet.SemanticTableProperty |
TypeScript | aws-cdk-lib » aws_quicksight » CfnDataSet » SemanticTableProperty |
A semantic table that represents the final analytical structure of the data.
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';
declare const tagRuleConfigurations: any;
const semanticTableProperty: quicksight.CfnDataSet.SemanticTableProperty = {
alias: 'alias',
destinationTableId: 'destinationTableId',
// the properties below are optional
rowLevelPermissionConfiguration: {
rowLevelPermissionDataSet: {
arn: 'arn',
permissionPolicy: 'permissionPolicy',
// the properties below are optional
formatVersion: 'formatVersion',
namespace: 'namespace',
status: 'status',
},
tagConfiguration: {
tagRules: [{
columnName: 'columnName',
tagKey: 'tagKey',
// the properties below are optional
matchAllValue: 'matchAllValue',
tagMultiValueDelimiter: 'tagMultiValueDelimiter',
}],
// the properties below are optional
status: 'status',
tagRuleConfigurations: tagRuleConfigurations,
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| alias | string | Alias for the semantic table. |
| destination | string | The identifier of the destination table from data preparation that provides data to this semantic table. |
| row | IResolvable | Row | Configuration for row level security that control data access for this semantic table. |
alias
Type:
string
Alias for the semantic table.
destinationTableId
Type:
string
The identifier of the destination table from data preparation that provides data to this semantic table.
rowLevelPermissionConfiguration?
Type:
IResolvable | Row
(optional)
Configuration for row level security that control data access for this semantic table.

.NET
Go
Java
Python
TypeScript