Interface CfnDataSet.RowLevelPermissionTagRuleProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDataSet.RowLevelPermissionTagRuleProperty.Jsii$Proxy
- Enclosing class:
CfnDataSet
@Stability(Stable)
public static interface CfnDataSet.RowLevelPermissionTagRuleProperty
extends software.amazon.jsii.JsiiSerializable
A set of rules associated with a tag.
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.*;
RowLevelPermissionTagRuleProperty rowLevelPermissionTagRuleProperty = RowLevelPermissionTagRuleProperty.builder()
.columnName("columnName")
.tagKey("tagKey")
// the properties below are optional
.matchAllValue("matchAllValue")
.tagMultiValueDelimiter("tagMultiValueDelimiter")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDataSet.RowLevelPermissionTagRulePropertystatic final classAn implementation forCfnDataSet.RowLevelPermissionTagRuleProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The column name that a tag key is assigned to.default StringA string that you want to use to filter by all the values in a column in the dataset and don’t want to list the values one by one.The unique key for a tag.default StringA string that you want to use to delimit the values when you pass the values at run time.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getColumnName
The column name that a tag key is assigned to.- See Also:
-
getTagKey
The unique key for a tag.- See Also:
-
getMatchAllValue
A string that you want to use to filter by all the values in a column in the dataset and don’t want to list the values one by one.For example, you can use an asterisk as your match all value.
- See Also:
-
getTagMultiValueDelimiter
A string that you want to use to delimit the values when you pass the values at run time.For example, you can delimit the values with a comma.
- See Also:
-
builder
-