Interface CfnDataSet.ColumnLevelPermissionRuleProperty
- All Superinterfaces:
- software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
- CfnDataSet.ColumnLevelPermissionRuleProperty.Jsii$Proxy
- Enclosing class:
- CfnDataSet
@Stability(Stable)
public static interface CfnDataSet.ColumnLevelPermissionRuleProperty
extends software.amazon.jsii.JsiiSerializable
A rule defined to grant access on one or more restricted columns.
 
Each dataset can have multiple rules. To create a restricted column, you add it to one or more rules. Each rule must contain at least one column and at least one user or group. To be able to see a restricted column, a user or group needs to be added to a rule for that column.
Example:
 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.quicksight.*;
 ColumnLevelPermissionRuleProperty columnLevelPermissionRuleProperty = ColumnLevelPermissionRuleProperty.builder()
         .columnNames(List.of("columnNames"))
         .principals(List.of("principals"))
         .build();
 - See Also:
- 
Nested Class SummaryNested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDataSet.ColumnLevelPermissionRulePropertystatic final classAn implementation forCfnDataSet.ColumnLevelPermissionRuleProperty
- 
Method SummaryModifier and TypeMethodDescriptionbuilder()An array of column names.An array of Amazon Resource Names (ARNs) for Quick Suite users or groups.Methods inherited from interface software.amazon.jsii.JsiiSerializable$jsii$toJson
- 
Method Details- 
getColumnNamesAn array of column names.- See Also:
 
- 
getPrincipalsAn array of Amazon Resource Names (ARNs) for Quick Suite users or groups.- See Also:
 
- 
builder
 
-