[][src]Struct rusoto_quicksight::ColumnLevelPermissionRule

pub struct ColumnLevelPermissionRule {
    pub column_names: Option<Vec<String>>,
    pub principals: Option<Vec<String>>,
}

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

column_names: Option<Vec<String>>

An array of column names.

principals: Option<Vec<String>>

An array of Amazon Resource Names (ARNs) for QuickSight users or groups.

Trait Implementations

impl Clone for ColumnLevelPermissionRule[src]

impl Debug for ColumnLevelPermissionRule[src]

impl Default for ColumnLevelPermissionRule[src]

impl<'de> Deserialize<'de> for ColumnLevelPermissionRule[src]

impl PartialEq<ColumnLevelPermissionRule> for ColumnLevelPermissionRule[src]

impl Serialize for ColumnLevelPermissionRule[src]

impl StructuralPartialEq for ColumnLevelPermissionRule[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.