Struct rusoto_glue::CreateTableRequest[][src]

pub struct CreateTableRequest {
    pub catalog_id: Option<String>,
    pub database_name: String,
    pub table_input: TableInput,
}

Fields

The ID of the Data Catalog in which to create the Table. If none is supplied, the AWS account ID is used by default.

The catalog database in which to create the new table. For Hive compatibility, this name is entirely lowercase.

The TableInput object that defines the metadata table to create in the catalog.

Trait Implementations

impl Default for CreateTableRequest
[src]

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

impl Debug for CreateTableRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for CreateTableRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for CreateTableRequest
[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