pub struct ListTablesInput {
pub exclusive_start_table_name: Option<String>,
pub limit: Option<i64>,
}
Expand description
Represents the input of a ListTables
operation.
Fields§
§exclusive_start_table_name: Option<String>
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.
limit: Option<i64>
A maximum number of table names to return. If this parameter is not specified, the limit is 100.
Trait Implementations§
Source§impl Clone for ListTablesInput
impl Clone for ListTablesInput
Source§fn clone(&self) -> ListTablesInput
fn clone(&self) -> ListTablesInput
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 ListTablesInput
impl Debug for ListTablesInput
Source§impl Default for ListTablesInput
impl Default for ListTablesInput
Source§fn default() -> ListTablesInput
fn default() -> ListTablesInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListTablesInput
impl PartialEq for ListTablesInput
Source§impl Serialize for ListTablesInput
impl Serialize for ListTablesInput
impl StructuralPartialEq for ListTablesInput
Auto Trait Implementations§
impl Freeze for ListTablesInput
impl RefUnwindSafe for ListTablesInput
impl Send for ListTablesInput
impl Sync for ListTablesInput
impl Unpin for ListTablesInput
impl UnwindSafe for ListTablesInput
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