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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDataSet.RowLevelPermissionTagConfigurationPropertystatic final classAn implementation forCfnDataSet.RowLevelPermissionTagConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getTagRules
A set of rules associated with row-level security, such as the tag names and columns that they are assigned to.- See Also:
-
getStatus
The status of row-level security tags.If enabled, the status is
ENABLED. If disabled, the status isDISABLED.- See Also:
-
getTagRuleConfigurations
The configuration of tags on a dataset to set row-level security.- See Also:
-
builder
-