Show / Hide Table of Contents

Interface CfnDataSet.IRowLevelPermissionTagConfigurationProperty

The element you can use to define tags for row-level security.

Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnDataSet.IRowLevelPermissionTagConfigurationProperty
Syntax (vb)
Public Interface CfnDataSet.IRowLevelPermissionTagConfigurationProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-rowlevelpermissiontagconfiguration.html

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.AWS.QuickSight;

             var tagRuleConfigurations;

             var rowLevelPermissionTagConfigurationProperty = new RowLevelPermissionTagConfigurationProperty {
                 TagRules = new [] { new RowLevelPermissionTagRuleProperty {
                     TagKey = "tagKey",

                     // the properties below are optional
                     ColumnName = "columnName",
                     MatchAllValue = "matchAllValue",
                     TagMultiValueDelimiter = "tagMultiValueDelimiter"
                 } },

                 // the properties below are optional
                 Status = "status",
                 TagRuleConfigurations = tagRuleConfigurations
             };

Synopsis

Properties

Status

The status of row-level security tags.

TagRuleConfigurations

The configuration of tags on a dataset to set row-level security.

TagRules

A set of rules associated with row-level security, such as the tag names and columns that they are assigned to.

Properties

Status

The status of row-level security tags.

string? Status { get; }
Property Value

string

Remarks

If enabled, the status is ENABLED . If disabled, the status is DISABLED .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-rowlevelpermissiontagconfiguration.html#cfn-quicksight-dataset-rowlevelpermissiontagconfiguration-status

TagRuleConfigurations

The configuration of tags on a dataset to set row-level security.

object? TagRuleConfigurations { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-rowlevelpermissiontagconfiguration.html#cfn-quicksight-dataset-rowlevelpermissiontagconfiguration-tagruleconfigurations

TagRules

A set of rules associated with row-level security, such as the tag names and columns that they are assigned to.

object TagRules { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-rowlevelpermissiontagconfiguration.html#cfn-quicksight-dataset-rowlevelpermissiontagconfiguration-tagrules

Back to top Generated by DocFX