Interface RowLevelPermissionTagRule.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<RowLevelPermissionTagRule.Builder,RowLevelPermissionTagRule>,SdkBuilder<RowLevelPermissionTagRule.Builder,RowLevelPermissionTagRule>,SdkPojo
- Enclosing class:
- RowLevelPermissionTagRule
@Mutable @NotThreadSafe public static interface RowLevelPermissionTagRule.Builder extends SdkPojo, CopyableBuilder<RowLevelPermissionTagRule.Builder,RowLevelPermissionTagRule>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RowLevelPermissionTagRule.BuildercolumnName(String columnName)The column name that a tag key is assigned to.RowLevelPermissionTagRule.BuildermatchAllValue(String matchAllValue)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.RowLevelPermissionTagRule.BuildertagKey(String tagKey)The unique key for a tag.RowLevelPermissionTagRule.BuildertagMultiValueDelimiter(String tagMultiValueDelimiter)A string that you want to use to delimit the values when you pass the values at run time.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
tagKey
RowLevelPermissionTagRule.Builder tagKey(String tagKey)
The unique key for a tag.
- Parameters:
tagKey- The unique key for a tag.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
columnName
RowLevelPermissionTagRule.Builder columnName(String columnName)
The column name that a tag key is assigned to.
- Parameters:
columnName- The column name that a tag key is assigned to.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tagMultiValueDelimiter
RowLevelPermissionTagRule.Builder tagMultiValueDelimiter(String tagMultiValueDelimiter)
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.
- Parameters:
tagMultiValueDelimiter- 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.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
matchAllValue
RowLevelPermissionTagRule.Builder matchAllValue(String matchAllValue)
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.
- Parameters:
matchAllValue- 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.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-