Class: Aws::QuickSight::Types::RowLevelPermissionTagConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::QuickSight::Types::RowLevelPermissionTagConfiguration
- Defined in:
- gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb
Overview
Note:
When making an API call, you may pass RowLevelPermissionTagConfiguration data as a hash:
{
status: "ENABLED", # accepts ENABLED, DISABLED
tag_rules: [ # required
{
tag_key: "SessionTagKey", # required
column_name: "String", # required
tag_multi_value_delimiter: "RowLevelPermissionTagDelimiter",
match_all_value: "SessionTagValue",
},
],
}
The configuration of tags on a dataset to set row-level security.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#status ⇒ String
The status of row-level security tags.
-
#tag_rules ⇒ Array<Types::RowLevelPermissionTagRule>
A set of rules associated with row-level security, such as the tag names and columns that they are assigned to.
Instance Attribute Details
#status ⇒ String
The status of row-level security tags. If enabled, the status is
ENABLED
. If disabled, the status is DISABLED
.
10930 10931 10932 10933 10934 10935 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 10930 class RowLevelPermissionTagConfiguration < Struct.new( :status, :tag_rules) SENSITIVE = [] include Aws::Structure end |
#tag_rules ⇒ Array<Types::RowLevelPermissionTagRule>
A set of rules associated with row-level security, such as the tag names and columns that they are assigned to.
10930 10931 10932 10933 10934 10935 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 10930 class RowLevelPermissionTagConfiguration < Struct.new( :status, :tag_rules) SENSITIVE = [] include Aws::Structure end |