Show / Hide Table of Contents

Class CfnDataSet.RowLevelPermissionTagConfigurationProperty

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

Inheritance
object
CfnDataSet.RowLevelPermissionTagConfigurationProperty
Implements
CfnDataSet.IRowLevelPermissionTagConfigurationProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnDataSet.RowLevelPermissionTagConfigurationProperty : CfnDataSet.IRowLevelPermissionTagConfigurationProperty
Syntax (vb)
Public Class CfnDataSet.RowLevelPermissionTagConfigurationProperty Implements 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 {
                     ColumnName = "columnName",
                     TagKey = "tagKey",

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

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

Synopsis

Constructors

RowLevelPermissionTagConfigurationProperty()

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

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.

Constructors

RowLevelPermissionTagConfigurationProperty()

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

public RowLevelPermissionTagConfigurationProperty()
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 {
                     ColumnName = "columnName",
                     TagKey = "tagKey",

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

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

Properties

Status

The status of row-level security tags.

public string? Status { get; set; }
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.

public object? TagRuleConfigurations { get; set; }
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.

public object TagRules { get; set; }
Property Value

object

Remarks

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

Implements

CfnDataSet.IRowLevelPermissionTagConfigurationProperty
Back to top Generated by DocFX