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]

[src]

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

impl Debug for ListTablesInput
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for ListTablesInput
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations