interface SemanticModelConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.QuickSight.CfnDataSetPropsMixin.SemanticModelConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsquicksight#CfnDataSetPropsMixin_SemanticModelConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.quicksight.CfnDataSetPropsMixin.SemanticModelConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_quicksight.CfnDataSetPropsMixin.SemanticModelConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_quicksight » CfnDataSetPropsMixin » 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/cfn-property-mixins';
declare const tagRuleConfigurations: any;
const semanticModelConfigurationProperty: quicksight.CfnDataSetPropsMixin.SemanticModelConfigurationProperty = {
semanticMetadata: [{
customInstructions: [{
inlineCustomInstruction: {
instructionText: 'instructionText',
uploadedDocumentMetadata: {
name: 'name',
},
},
}],
description: {
text: 'text',
},
}],
tableMap: {
tableMapKey: {
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',
}],
},
},
semanticMetadata: {
columnMetadata: [{
columnNames: ['columnNames'],
columnProperties: [{
additionalNotes: {
text: 'text',
},
description: {
text: 'text',
},
semanticType: {
geographicalRole: 'geographicalRole',
},
}],
}],
},
},
},
};
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