Interface CfnDataSet.RowLevelPermissionTagConfigurationProperty

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

@Stability(Stable) public static interface CfnDataSet.RowLevelPermissionTagConfigurationProperty extends software.amazon.jsii.JsiiSerializable
The element you can use to define tags for row-level security.

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;
 RowLevelPermissionTagConfigurationProperty rowLevelPermissionTagConfigurationProperty = 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();
 

See Also: