[][src]Struct rusoto_glue::DatabaseInput

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

The structure used to create or update a database.

Fields

create_table_default_permissions: Option<Vec<PrincipalPermissions>>

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

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.

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 DatabaseInput[src]

impl Debug for DatabaseInput[src]

impl Default for DatabaseInput[src]

impl PartialEq<DatabaseInput> for DatabaseInput[src]

impl Serialize for DatabaseInput[src]

impl StructuralPartialEq for DatabaseInput[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> From<T> for T[src]

impl<T> Instrument 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.