interface RowLevelPermissionTagConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnDataSetPropsMixin.RowLevelPermissionTagConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnDataSetPropsMixin_RowLevelPermissionTagConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnDataSetPropsMixin.RowLevelPermissionTagConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnDataSetPropsMixin.RowLevelPermissionTagConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnDataSetPropsMixin » RowLevelPermissionTagConfigurationProperty |
The element you can use to define tags 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 { mixins as quicksight_mixins } from '@aws-cdk/mixins-preview/aws-quicksight';
declare const tagRuleConfigurations: any;
const rowLevelPermissionTagConfigurationProperty: quicksight_mixins.CfnDataSetPropsMixin.RowLevelPermissionTagConfigurationProperty = {
status: 'status',
tagRuleConfigurations: tagRuleConfigurations,
tagRules: [{
columnName: 'columnName',
matchAllValue: 'matchAllValue',
tagKey: 'tagKey',
tagMultiValueDelimiter: 'tagMultiValueDelimiter',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| status? | string | The status of row-level security tags. |
| tag | any | The configuration of tags on a dataset to set row-level security. |
| tag | IResolvable | (IResolvable | Row)[] | A set of rules associated with row-level security, such as the tag names and columns that they are assigned to. |
status?
Type:
string
(optional)
The status of row-level security tags.
If enabled, the status is ENABLED . If disabled, the status is DISABLED .
tagRuleConfigurations?
Type:
any
(optional)
The configuration of tags on a dataset to set row-level security.
tagRules?
Type:
IResolvable | (IResolvable | Row)[]
(optional)
A set of rules associated with row-level security, such as the tag names and columns that they are assigned to.

.NET
Go
Java
Python
TypeScript