Struct rusoto_dynamodb::ListTablesInput[][src]

pub struct ListTablesInput {
    pub exclusive_start_table_name: Option<String>,
    pub limit: Option<i64>,
}

Represents the input of a ListTables operation.

Fields

The first table name that this operation will evaluate. Use the value that was returned for LastEvaluatedTableName in a previous operation, so that you can obtain the next page of results.

A maximum number of table names to return. If this parameter is not specified, the limit is 100.

Trait Implementations

impl Default for ListTablesInput
[src]

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

impl Debug for ListTablesInput
[src]

Formats the value using the given formatter. Read more

impl Clone for ListTablesInput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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