interface RowLevelPermissionTagConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnDataSet.RowLevelPermissionTagConfigurationProperty |
Java | software.amazon.awscdk.services.quicksight.CfnDataSet.RowLevelPermissionTagConfigurationProperty |
Python | aws_cdk.aws_quicksight.CfnDataSet.RowLevelPermissionTagConfigurationProperty |
TypeScript | @aws-cdk/aws-quicksight » CfnDataSet » RowLevelPermissionTagConfigurationProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as quicksight from '@aws-cdk/aws-quicksight';
declare const tagRuleConfigurations: any;
const rowLevelPermissionTagConfigurationProperty: quicksight.CfnDataSet.RowLevelPermissionTagConfigurationProperty = {
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 |
|---|---|---|
| tag | IResolvable | IResolvable | Row[] | CfnDataSet.RowLevelPermissionTagConfigurationProperty.TagRules. |
| status? | string | CfnDataSet.RowLevelPermissionTagConfigurationProperty.Status. |
| tag | any | CfnDataSet.RowLevelPermissionTagConfigurationProperty.TagRuleConfigurations. |
tagRules
Type:
IResolvable | IResolvable | Row[]
CfnDataSet.RowLevelPermissionTagConfigurationProperty.TagRules.
status?
Type:
string
(optional)
CfnDataSet.RowLevelPermissionTagConfigurationProperty.Status.
tagRuleConfigurations?
Type:
any
(optional)
CfnDataSet.RowLevelPermissionTagConfigurationProperty.TagRuleConfigurations.

.NET
Java
Python
TypeScript