[][src]Struct rusoto_glue::Database

pub struct Database {
    pub catalog_id: Option<String>,
    pub create_table_default_permissions: Option<Vec<PrincipalPermissions>>,
    pub create_time: Option<f64>,
    pub description: Option<String>,
    pub location_uri: Option<String>,
    pub name: String,
    pub parameters: Option<HashMap<String, String>>,
    pub target_database: Option<DatabaseIdentifier>,
}

The Database object represents a logical grouping of tables that might reside in a Hive metastore or an RDBMS.

Fields

catalog_id: Option<String>

The ID of the Data Catalog in which the database resides.

create_table_default_permissions: Option<Vec<PrincipalPermissions>>

Creates a set of default permissions on the table for principals.

create_time: Option<f64>

The time at which the metadata database was created in the catalog.

description: Option<String>

A description of the database.

location_uri: Option<String>

The location of the database (for example, an HDFS path).

name: String

The name of the database. For Hive compatibility, this is folded to lowercase when it is stored.

parameters: Option<HashMap<String, String>>

These key-value pairs define parameters and properties of the database.

target_database: Option<DatabaseIdentifier>

A DatabaseIdentifier structure that describes a target database for resource linking.

Trait Implementations

impl Clone for Database[src]

impl Debug for Database[src]

impl Default for Database[src]

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

impl PartialEq<Database> for Database[src]

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