interface SemanticModelConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnDataSet.SemanticModelConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnDataSet_SemanticModelConfigurationProperty |
Java | software.amazon.awscdk.services.quicksight.CfnDataSet.SemanticModelConfigurationProperty |
Python | aws_cdk.aws_quicksight.CfnDataSet.SemanticModelConfigurationProperty |
TypeScript | aws-cdk-lib » aws_quicksight » CfnDataSet » SemanticModelConfigurationProperty |
Configuration for the semantic model that defines how prepared data is structured for analysis and reporting.
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 semanticModelConfigurationProperty: quicksight.CfnDataSet.SemanticModelConfigurationProperty = {
semanticMetadata: [{
customInstructions: [{
inlineCustomInstruction: {
instructionText: 'instructionText',
// the properties below are optional
uploadedDocumentMetadata: {
name: 'name',
},
},
}],
description: {
text: 'text',
},
}],
tableMap: {
tableMapKey: {
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,
},
},
semanticMetadata: {
columnMetadata: [{
columnProperties: [{
additionalNotes: {
text: 'text',
},
description: {
text: 'text',
},
semanticType: {
geographicalRole: 'geographicalRole',
},
}],
// the properties below are optional
columnNames: ['columnNames'],
}],
},
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| semantic | IResolvable | (IResolvable | Data)[] | |
| table | IResolvable | { [string]: IResolvable | Semantic } | A map of semantic tables that define the analytical structure. |
semanticMetadata?
Type:
IResolvable | (IResolvable | Data)[]
(optional)
tableMap?
Type:
IResolvable | { [string]: IResolvable | Semantic }
(optional)
A map of semantic tables that define the analytical structure.

.NET
Go
Java
Python
TypeScript