Is it possible to implement the Row level security for the below mentioned case in quicksight ?
Example
Suppose you have the following data:
Main dataset
Divisions | Sales |
---|---|
1234,1245 | 100 |
1234 | 200 |
1245 | 300 |
User dataset
Username | Division |
---|---|
abc | 1234 |
def | 1245 |
ghi | 1234 |
When the user “abc” logs in, the filter will be applied, and only rows that contain the division ID “1234” will be displayed, including the row with multiple division IDs (“1234,1245”). The resulting data will be:
Divisions | Sales |
---|---|
1234,1245 | 100 |
1234 |