[][src]Struct rusoto_lakeformation::DataLakeSettings

pub struct DataLakeSettings {
    pub create_database_default_permissions: Option<Vec<PrincipalPermissions>>,
    pub create_table_default_permissions: Option<Vec<PrincipalPermissions>>,
    pub data_lake_admins: Option<Vec<DataLakePrincipal>>,
    pub trusted_resource_owners: Option<Vec<String>>,
}

A structure representing a list of AWS Lake Formation principals designated as data lake administrators and lists of principal permission entries for default create database and default create table permissions.

Fields

create_database_default_permissions: Option<Vec<PrincipalPermissions>>

A structure representing a list of up to three principal permissions entries for default create database permissions.

create_table_default_permissions: Option<Vec<PrincipalPermissions>>

A structure representing a list of up to three principal permissions entries for default create table permissions.

data_lake_admins: Option<Vec<DataLakePrincipal>>

A list of AWS Lake Formation principals. Supported principals are IAM users or IAM roles.

trusted_resource_owners: Option<Vec<String>>

A list of the resource-owning account IDs that the caller's account can use to share their user access details (user ARNs). The user ARNs can be logged in the resource owner's AWS CloudTrail log.

You may want to specify this property when you are in a high-trust boundary, such as the same team or company.

Trait Implementations

impl Clone for DataLakeSettings[src]

impl Debug for DataLakeSettings[src]

impl Default for DataLakeSettings[src]

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

impl PartialEq<DataLakeSettings> for DataLakeSettings[src]

impl Serialize for DataLakeSettings[src]

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