Interface CfnDataSet.SemanticModelConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDataSet.SemanticModelConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnDataSet

@Stability(Stable) public static interface CfnDataSet.SemanticModelConfigurationProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.quicksight.*;
 Object tagRuleConfigurations;
 SemanticModelConfigurationProperty semanticModelConfigurationProperty = SemanticModelConfigurationProperty.builder()
         .semanticMetadata(List.of(DataSetSemanticMetadataProperty.builder()
                 .customInstructions(List.of(CustomInstructionProperty.builder()
                         .inlineCustomInstruction(InlineCustomInstructionProperty.builder()
                                 .instructionText("instructionText")
                                 // the properties below are optional
                                 .uploadedDocumentMetadata(UploadedDocumentMetadataProperty.builder()
                                         .name("name")
                                         .build())
                                 .build())
                         .build()))
                 .description(DataSetSemanticDescriptionProperty.builder()
                         .text("text")
                         .build())
                 .build()))
         .tableMap(Map.of(
                 "tableMapKey", SemanticTableProperty.builder()
                         .alias("alias")
                         .destinationTableId("destinationTableId")
                         // the properties below are optional
                         .rowLevelPermissionConfiguration(RowLevelPermissionConfigurationProperty.builder()
                                 .rowLevelPermissionDataSet(RowLevelPermissionDataSetProperty.builder()
                                         .arn("arn")
                                         .permissionPolicy("permissionPolicy")
                                         // the properties below are optional
                                         .formatVersion("formatVersion")
                                         .namespace("namespace")
                                         .status("status")
                                         .build())
                                 .tagConfiguration(RowLevelPermissionTagConfigurationProperty.builder()
                                         .tagRules(List.of(RowLevelPermissionTagRuleProperty.builder()
                                                 .columnName("columnName")
                                                 .tagKey("tagKey")
                                                 // the properties below are optional
                                                 .matchAllValue("matchAllValue")
                                                 .tagMultiValueDelimiter("tagMultiValueDelimiter")
                                                 .build()))
                                         // the properties below are optional
                                         .status("status")
                                         .tagRuleConfigurations(tagRuleConfigurations)
                                         .build())
                                 .build())
                         .semanticMetadata(TableSemanticMetadataProperty.builder()
                                 .columnMetadata(List.of(SharedColumnSemanticMetadataProperty.builder()
                                         .columnProperties(List.of(ColumnSemanticPropertyProperty.builder()
                                                 .additionalNotes(AdditionalNotesProperty.builder()
                                                         .text("text")
                                                         .build())
                                                 .description(ColumnDescriptionProperty.builder()
                                                         .text("text")
                                                         .build())
                                                 .semanticType(ColumnSemanticTypeProperty.builder()
                                                         .geographicalRole("geographicalRole")
                                                         .build())
                                                 .build()))
                                         // the properties below are optional
                                         .columnNames(List.of("columnNames"))
                                         .build()))
                                 .build())
                         .build()))
         .build();
 

See Also: