[][src]Struct rusoto_lakeformation::TableWithColumnsResource

pub struct TableWithColumnsResource {
    pub catalog_id: Option<String>,
    pub column_names: Option<Vec<String>>,
    pub column_wildcard: Option<ColumnWildcard>,
    pub database_name: String,
    pub name: String,
}

A structure for a table with columns object. This object is only used when granting a SELECT permission.

This object must take a value for at least one of ColumnsNames, ColumnsIndexes, or ColumnsWildcard.

Fields

catalog_id: Option<String>

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

column_names: Option<Vec<String>>

The list of column names for the table. At least one of ColumnNames or ColumnWildcard is required.

column_wildcard: Option<ColumnWildcard>

A wildcard specified by a ColumnWildcard object. At least one of ColumnNames or ColumnWildcard is required.

database_name: String

The name of the database for the table with columns 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 privileges to a principal.

name: String

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

Trait Implementations

impl Clone for TableWithColumnsResource[src]

impl Debug for TableWithColumnsResource[src]

impl Default for TableWithColumnsResource[src]

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

impl PartialEq<TableWithColumnsResource> for TableWithColumnsResource[src]

impl Serialize for TableWithColumnsResource[src]

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