Class CfnDataSetPropsMixin.RowLevelPermissionTagRuleProperty
A set of rules associated with a tag.
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.QuickSight
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnDataSetPropsMixin.RowLevelPermissionTagRuleProperty : CfnDataSetPropsMixin.IRowLevelPermissionTagRuleProperty
Syntax (vb)
Public Class CfnDataSetPropsMixin.RowLevelPermissionTagRuleProperty Implements CfnDataSetPropsMixin.IRowLevelPermissionTagRuleProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.QuickSight;
var rowLevelPermissionTagRuleProperty = new RowLevelPermissionTagRuleProperty {
ColumnName = "columnName",
MatchAllValue = "matchAllValue",
TagKey = "tagKey",
TagMultiValueDelimiter = "tagMultiValueDelimiter"
};
Synopsis
Constructors
| RowLevelPermissionTagRuleProperty() | A set of rules associated with a tag. |
Properties
| ColumnName | The column name that a tag key is assigned to. |
| MatchAllValue | A string that you want to use to filter by all the values in a column in the dataset and don’t want to list the values one by one. |
| TagKey | The unique key for a tag. |
| TagMultiValueDelimiter | A string that you want to use to delimit the values when you pass the values at run time. |
Constructors
RowLevelPermissionTagRuleProperty()
A set of rules associated with a tag.
public RowLevelPermissionTagRuleProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.QuickSight;
var rowLevelPermissionTagRuleProperty = new RowLevelPermissionTagRuleProperty {
ColumnName = "columnName",
MatchAllValue = "matchAllValue",
TagKey = "tagKey",
TagMultiValueDelimiter = "tagMultiValueDelimiter"
};
Properties
ColumnName
The column name that a tag key is assigned to.
public string? ColumnName { get; set; }
Property Value
Remarks
MatchAllValue
A string that you want to use to filter by all the values in a column in the dataset and don’t want to list the values one by one.
public string? MatchAllValue { get; set; }
Property Value
Remarks
For example, you can use an asterisk as your match all value.
TagKey
The unique key for a tag.
public string? TagKey { get; set; }
Property Value
Remarks
TagMultiValueDelimiter
A string that you want to use to delimit the values when you pass the values at run time.
public string? TagMultiValueDelimiter { get; set; }
Property Value
Remarks
For example, you can delimit the values with a comma.