interface SemanticTableProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnDataSetPropsMixin.SemanticTableProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnDataSetPropsMixin_SemanticTableProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnDataSetPropsMixin.SemanticTableProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnDataSetPropsMixin.SemanticTableProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnDataSetPropsMixin » 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 { mixins as quicksight_mixins } from '@aws-cdk/mixins-preview/aws-quicksight';
declare const tagRuleConfigurations: any;
const semanticTableProperty: quicksight_mixins.CfnDataSetPropsMixin.SemanticTableProperty = {
alias: 'alias',
destinationTableId: 'destinationTableId',
rowLevelPermissionConfiguration: {
rowLevelPermissionDataSet: {
arn: 'arn',
formatVersion: 'formatVersion',
namespace: 'namespace',
permissionPolicy: 'permissionPolicy',
status: 'status',
},
tagConfiguration: {
status: 'status',
tagRuleConfigurations: tagRuleConfigurations,
tagRules: [{
columnName: 'columnName',
matchAllValue: 'matchAllValue',
tagKey: 'tagKey',
tagMultiValueDelimiter: 'tagMultiValueDelimiter',
}],
},
},
};
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
(optional)
Alias for the semantic table.
destinationTableId?
Type:
string
(optional)
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