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
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();
-
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
CfnDataSet.RowLevelPermissionTagConfigurationProperty.TagRules. -
getStatus
CfnDataSet.RowLevelPermissionTagConfigurationProperty.Status. -
getTagRuleConfigurations
CfnDataSet.RowLevelPermissionTagConfigurationProperty.TagRuleConfigurations. -
builder
-