Interface CfnDataSetPropsMixin.ISemanticModelConfigurationProperty
Configuration for the semantic model that defines how prepared data is structured for analysis and reporting.
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.QuickSight
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public interface CfnDataSetPropsMixin.ISemanticModelConfigurationProperty
Syntax (vb)
Public Interface CfnDataSetPropsMixin.ISemanticModelConfigurationProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.QuickSight;
var tagRuleConfigurations;
var semanticModelConfigurationProperty = new SemanticModelConfigurationProperty {
SemanticMetadata = new [] { new DataSetSemanticMetadataProperty {
CustomInstructions = new [] { new CustomInstructionProperty {
InlineCustomInstruction = new InlineCustomInstructionProperty {
InstructionText = "instructionText",
UploadedDocumentMetadata = new UploadedDocumentMetadataProperty {
Name = "name"
}
}
} },
Description = new DataSetSemanticDescriptionProperty {
Text = "text"
}
} },
TableMap = new Dictionary<string, object> {
{ "tableMapKey", new SemanticTableProperty {
Alias = "alias",
DestinationTableId = "destinationTableId",
RowLevelPermissionConfiguration = new RowLevelPermissionConfigurationProperty {
RowLevelPermissionDataSet = new RowLevelPermissionDataSetProperty {
Arn = "arn",
FormatVersion = "formatVersion",
Namespace = "namespace",
PermissionPolicy = "permissionPolicy",
Status = "status"
},
TagConfiguration = new RowLevelPermissionTagConfigurationProperty {
Status = "status",
TagRuleConfigurations = tagRuleConfigurations,
TagRules = new [] { new RowLevelPermissionTagRuleProperty {
ColumnName = "columnName",
MatchAllValue = "matchAllValue",
TagKey = "tagKey",
TagMultiValueDelimiter = "tagMultiValueDelimiter"
} }
}
},
SemanticMetadata = new TableSemanticMetadataProperty {
ColumnMetadata = new [] { new SharedColumnSemanticMetadataProperty {
ColumnNames = new [] { "columnNames" },
ColumnProperties = new [] { new ColumnSemanticPropertyProperty {
AdditionalNotes = new AdditionalNotesProperty {
Text = "text"
},
Description = new ColumnDescriptionProperty {
Text = "text"
},
SemanticType = new ColumnSemanticTypeProperty {
GeographicalRole = "geographicalRole"
}
} }
} }
}
} }
}
};
Synopsis
Properties
| SemanticMetadata | Configuration for the semantic model that defines how prepared data is structured for analysis and reporting. |
| TableMap | A map of semantic tables that define the analytical structure. |
Properties
SemanticMetadata
Configuration for the semantic model that defines how prepared data is structured for analysis and reporting.
object? SemanticMetadata { get; }
Property Value
Remarks
Type union: either IResolvable or (either IResolvable or CfnDataSetPropsMixin.IDataSetSemanticMetadataProperty)[]
TableMap
A map of semantic tables that define the analytical structure.
object? TableMap { get; }
Property Value
Remarks
Type union: either IResolvable or Dictionary<string, either IResolvable or CfnDataSetPropsMixin.ISemanticTableProperty>