[][src]Struct rusoto_lakeformation::PrincipalResourcePermissions

pub struct PrincipalResourcePermissions {
    pub permissions: Option<Vec<String>>,
    pub permissions_with_grant_option: Option<Vec<String>>,
    pub principal: Option<DataLakePrincipal>,
    pub resource: Option<Resource>,
}

The permissions granted or revoked on a resource.

Fields

permissions: Option<Vec<String>>

The permissions to be granted or revoked on the resource.

permissions_with_grant_option: Option<Vec<String>>

Indicates whether to grant the ability to grant permissions (as a subset of permissions granted).

principal: Option<DataLakePrincipal>

The Data Lake principal to be granted or revoked permissions.

resource: Option<Resource>

The resource where permissions are to be granted or revoked.

Trait Implementations

impl Clone for PrincipalResourcePermissions[src]

impl Debug for PrincipalResourcePermissions[src]

impl Default for PrincipalResourcePermissions[src]

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

impl PartialEq<PrincipalResourcePermissions> for PrincipalResourcePermissions[src]

impl StructuralPartialEq for PrincipalResourcePermissions[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: Deserialize<'de>, 
[src]

impl<T> From<T> 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.