Struct aws_sdk_dynamodb::output::ListTablesOutput
source · [−]#[non_exhaustive]pub struct ListTablesOutput { /* private fields */ }
Expand description
Represents the output of a ListTables
operation.
Implementations
sourceimpl ListTablesOutput
impl ListTablesOutput
sourcepub fn table_names(&self) -> Option<&[String]>
pub fn table_names(&self) -> Option<&[String]>
The names of the tables associated with the current account at the current endpoint. The maximum size of this array is 100.
If LastEvaluatedTableName
also appears in the output, you can use this value as the ExclusiveStartTableName
parameter in a subsequent ListTables
request and obtain the next page of results.
sourcepub fn last_evaluated_table_name(&self) -> Option<&str>
pub fn last_evaluated_table_name(&self) -> Option<&str>
The name of the last table in the current page of results. Use this value as the ExclusiveStartTableName
in a new request to obtain the next page of results, until all the table names are returned.
If you do not receive a LastEvaluatedTableName
value in the response, this means that there are no more table names to be retrieved.
sourceimpl ListTablesOutput
impl ListTablesOutput
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ListTablesOutput
.
Trait Implementations
sourceimpl Clone for ListTablesOutput
impl Clone for ListTablesOutput
sourcefn clone(&self) -> ListTablesOutput
fn clone(&self) -> ListTablesOutput
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more