Struct aws_sdk_dynamodb::output::ListTablesOutput
source · #[non_exhaustive]pub struct ListTablesOutput { /* private fields */ }Expand description
Represents the output of a ListTables operation.
Implementations§
source§impl 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.
source§impl ListTablesOutput
impl ListTablesOutput
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ListTablesOutput.
Trait Implementations§
source§impl Clone for ListTablesOutput
impl Clone for ListTablesOutput
source§fn clone(&self) -> ListTablesOutput
fn clone(&self) -> ListTablesOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ListTablesOutput
impl Debug for ListTablesOutput
source§impl PartialEq<ListTablesOutput> for ListTablesOutput
impl PartialEq<ListTablesOutput> for ListTablesOutput
source§fn eq(&self, other: &ListTablesOutput) -> bool
fn eq(&self, other: &ListTablesOutput) -> bool
self and other values to be equal, and is used
by ==.