[][src]Struct rusoto_lakeformation::Resource

pub struct Resource {
    pub catalog: Option<CatalogResource>,
    pub data_location: Option<DataLocationResource>,
    pub database: Option<DatabaseResource>,
    pub table: Option<TableResource>,
    pub table_with_columns: Option<TableWithColumnsResource>,
}

A structure for the resource.

Fields

catalog: Option<CatalogResource>

The identifier for the Data Catalog. By default, the account ID. The Data Catalog is the persistent metadata store. It contains database definitions, table definitions, and other control information to manage your AWS Lake Formation environment.

data_location: Option<DataLocationResource>

The location of an Amazon S3 path where permissions are granted or revoked.

database: Option<DatabaseResource>

The database for the resource. Unique to the Data Catalog. A database is a set of associated table definitions organized into a logical group. You can Grant and Revoke database permissions to a principal.

table: Option<TableResource>

The table for the resource. A table is a metadata definition that represents your data. You can Grant and Revoke table privileges to a principal.

table_with_columns: Option<TableWithColumnsResource>

The table with columns for the resource. A principal with permissions to this resource can select metadata from the columns of a table in the Data Catalog and the underlying data in Amazon S3.

Trait Implementations

impl Clone for Resource[src]

impl Debug for Resource[src]

impl Default for Resource[src]

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

impl PartialEq<Resource> for Resource[src]

impl Serialize for Resource[src]

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