Interface CfnDataSet.SemanticTableProperty

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

@Stability(Stable) public static interface CfnDataSet.SemanticTableProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.quicksight.*;
 Object tagRuleConfigurations;
 SemanticTableProperty semanticTableProperty = 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())
         .build();
 

See Also: