interface RowLevelPermissionConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnDataSet.RowLevelPermissionConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnDataSet_RowLevelPermissionConfigurationProperty |
Java | software.amazon.awscdk.services.quicksight.CfnDataSet.RowLevelPermissionConfigurationProperty |
Python | aws_cdk.aws_quicksight.CfnDataSet.RowLevelPermissionConfigurationProperty |
TypeScript | aws-cdk-lib » aws_quicksight » CfnDataSet » RowLevelPermissionConfigurationProperty |
Configuration for row level security.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_quicksight as quicksight } from 'aws-cdk-lib';
declare const tagRuleConfigurations: any;
const rowLevelPermissionConfigurationProperty: quicksight.CfnDataSet.RowLevelPermissionConfigurationProperty = {
rowLevelPermissionDataSet: {
arn: 'arn',
permissionPolicy: 'permissionPolicy',
// the properties below are optional
formatVersion: 'formatVersion',
namespace: 'namespace',
status: 'status',
},
tagConfiguration: {
tagRules: [{
columnName: 'columnName',
tagKey: 'tagKey',
// the properties below are optional
matchAllValue: 'matchAllValue',
tagMultiValueDelimiter: 'tagMultiValueDelimiter',
}],
// the properties below are optional
status: 'status',
tagRuleConfigurations: tagRuleConfigurations,
},
};
Properties
| Name | Type | Description |
|---|---|---|
| row | IResolvable | Row | Information about a dataset that contains permissions for row-level security (RLS). |
| tag | IResolvable | Row | The configuration of tags on a dataset to set row-level security. |
rowLevelPermissionDataSet?
Type:
IResolvable | Row
(optional)
<p>Information about a dataset that contains permissions for row-level security (RLS).
The permissions dataset maps fields to users or groups. For more information, see Using Row-Level Security (RLS) to Restrict Access to a Dataset in the <i>Amazon QuickSight User Guide.
<p>The option to deny permissions by setting <code>PermissionPolicy to <code>DENY_ACCESS is not supported for new RLS datasets.tagConfiguration?
Type:
IResolvable | Row
(optional)
<p>The configuration of tags on a dataset to set row-level security.

.NET
Go
Java
Python
TypeScript