pub struct ListTablesOutput {
pub last_evaluated_table_name: Option<String>,
pub table_names: Option<Vec<String>>,
}
Expand description
Represents the output of a ListTables
operation.
Fields§
§last_evaluated_table_name: Option<String>
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.
table_names: Option<Vec<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.
Trait Implementations§
Source§impl Clone for ListTablesOutput
impl Clone for ListTablesOutput
Source§fn clone(&self) -> ListTablesOutput
fn clone(&self) -> ListTablesOutput
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ListTablesOutput
impl Debug for ListTablesOutput
Source§impl Default for ListTablesOutput
impl Default for ListTablesOutput
Source§fn default() -> ListTablesOutput
fn default() -> ListTablesOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListTablesOutput
impl<'de> Deserialize<'de> for ListTablesOutput
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ListTablesOutput
impl PartialEq for ListTablesOutput
impl StructuralPartialEq for ListTablesOutput
Auto Trait Implementations§
impl Freeze for ListTablesOutput
impl RefUnwindSafe for ListTablesOutput
impl Send for ListTablesOutput
impl Sync for ListTablesOutput
impl Unpin for ListTablesOutput
impl UnwindSafe for ListTablesOutput
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more