#[non_exhaustive]pub struct ColumnLevelPermissionRule {
pub principals: Option<Vec<String>>,
pub column_names: Option<Vec<String>>,
}Expand description
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.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.principals: Option<Vec<String>>An array of Amazon Resource Names (ARNs) for Amazon QuickSight users or groups.
column_names: Option<Vec<String>>An array of column names.
Implementations
Creates a new builder-style object to manufacture ColumnLevelPermissionRule
Trait Implementations
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl RefUnwindSafe for ColumnLevelPermissionRule
impl Send for ColumnLevelPermissionRule
impl Sync for ColumnLevelPermissionRule
impl Unpin for ColumnLevelPermissionRule
impl UnwindSafe for ColumnLevelPermissionRule
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more