Struct rusoto_glue::GetTablesRequest[][src]

pub struct GetTablesRequest {
    pub catalog_id: Option<String>,
    pub database_name: String,
    pub expression: Option<String>,
    pub max_results: Option<i64>,
    pub next_token: Option<String>,
}

Fields

The ID of the Data Catalog where the tables reside. If none is supplied, the AWS account ID is used by default.

The database in the catalog whose tables to list. For Hive compatibility, this name is entirely lowercase.

A regular expression pattern. If present, only those tables whose names match the pattern are returned.

The maximum number of tables to return in a single response.

A continuation token, included if this is a continuation call.

Trait Implementations

impl Default for GetTablesRequest
[src]

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

impl Debug for GetTablesRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for GetTablesRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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