Struct rusoto_dynamodb::ListGlobalTablesInput[][src]

pub struct ListGlobalTablesInput {
    pub exclusive_start_global_table_name: Option<String>,
    pub limit: Option<i64>,
    pub region_name: Option<String>,
}

Fields

The first global table name that this operation will evaluate.

The maximum number of table names to return.

Lists the global tables in a specific region.

Trait Implementations

impl Default for ListGlobalTablesInput
[src]

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

impl Debug for ListGlobalTablesInput
[src]

Formats the value using the given formatter. Read more

impl Clone for ListGlobalTablesInput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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