[][src]Struct rusoto_lakeformation::TableResource

pub struct TableResource {
    pub catalog_id: Option<String>,
    pub database_name: String,
    pub name: Option<String>,
    pub table_wildcard: Option<TableWildcard>,
}

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

Fields

catalog_id: Option<String>

The identifier for the Data Catalog. By default, it is the account ID of the caller.

database_name: String

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

name: Option<String>

The name of the table.

table_wildcard: Option<TableWildcard>

A wildcard object representing every table under a database.

At least one of TableResource$Name or TableResource$TableWildcard is required.

Trait Implementations

impl Clone for TableResource[src]

impl Debug for TableResource[src]

impl Default for TableResource[src]

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

impl PartialEq<TableResource> for TableResource[src]

impl Serialize for TableResource[src]

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