[][src]Struct rusoto_lakeformation::BatchPermissionsRequestEntry

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

A permission to a resource granted by batch operation to the principal.

Fields

id: String

A unique identifier for the batch permissions request entry.

permissions: Option<Vec<String>>

The permissions to be granted.

permissions_with_grant_option: Option<Vec<String>>

Indicates if the option to pass permissions is granted.

principal: Option<DataLakePrincipal>

The principal to be granted a permission.

resource: Option<Resource>

The resource to which the principal is to be granted a permission.

Trait Implementations

impl Clone for BatchPermissionsRequestEntry[src]

impl Debug for BatchPermissionsRequestEntry[src]

impl Default for BatchPermissionsRequestEntry[src]

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

impl PartialEq<BatchPermissionsRequestEntry> for BatchPermissionsRequestEntry[src]

impl Serialize for BatchPermissionsRequestEntry[src]

impl StructuralPartialEq for BatchPermissionsRequestEntry[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.