Struct rusoto_glue::DatabaseInput[][src]

pub struct DatabaseInput {
    pub description: Option<String>,
    pub location_uri: Option<String>,
    pub name: String,
    pub parameters: Option<HashMap<String, String>>,
}

The structure used to create or update a database.

Fields

Description of the database

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

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

A list of key-value pairs that define parameters and properties of the database.

Trait Implementations

impl Default for DatabaseInput
[src]

Returns the "default value" for a type. Read more

impl Debug for DatabaseInput
[src]

Formats the value using the given formatter. Read more

impl Clone for DatabaseInput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for DatabaseInput
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations