Class: Aws::QuickSight::Types::ColumnLevelPermissionRule
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::QuickSight::Types::ColumnLevelPermissionRule
 
- Defined in:
- gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb
Overview
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.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #column_names  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    An array of column names. 
- 
  
    
      #principals  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    An array of Amazon Resource Names (ARNs) for Quick Sight users or groups. 
Instance Attribute Details
#column_names ⇒ Array<String>
An array of column names.
| 5143 5144 5145 5146 5147 5148 | # File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 5143 class ColumnLevelPermissionRule < Struct.new( :principals, :column_names) SENSITIVE = [] include Aws::Structure end | 
#principals ⇒ Array<String>
An array of Amazon Resource Names (ARNs) for Quick Sight users or groups.
| 5143 5144 5145 5146 5147 5148 | # File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 5143 class ColumnLevelPermissionRule < Struct.new( :principals, :column_names) SENSITIVE = [] include Aws::Structure end |