pub struct ListGlobalTablesInput {
pub exclusive_start_global_table_name: Option<String>,
pub limit: Option<i64>,
pub region_name: Option<String>,
}
Fields§
§exclusive_start_global_table_name: Option<String>
The first global table name that this operation will evaluate.
limit: Option<i64>
The maximum number of table names to return, if the parameter is not specified DynamoDB defaults to 100.
If the number of global tables DynamoDB finds reaches this limit, it stops the operation and returns the table names collected up to that point, with a table name in the LastEvaluatedGlobalTableName
to apply in a subsequent operation to the ExclusiveStartGlobalTableName
parameter.
region_name: Option<String>
Lists the global tables in a specific Region.
Trait Implementations§
Source§impl Clone for ListGlobalTablesInput
impl Clone for ListGlobalTablesInput
Source§fn clone(&self) -> ListGlobalTablesInput
fn clone(&self) -> ListGlobalTablesInput
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 ListGlobalTablesInput
impl Debug for ListGlobalTablesInput
Source§impl Default for ListGlobalTablesInput
impl Default for ListGlobalTablesInput
Source§fn default() -> ListGlobalTablesInput
fn default() -> ListGlobalTablesInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListGlobalTablesInput
impl PartialEq for ListGlobalTablesInput
Source§impl Serialize for ListGlobalTablesInput
impl Serialize for ListGlobalTablesInput
impl StructuralPartialEq for ListGlobalTablesInput
Auto Trait Implementations§
impl Freeze for ListGlobalTablesInput
impl RefUnwindSafe for ListGlobalTablesInput
impl Send for ListGlobalTablesInput
impl Sync for ListGlobalTablesInput
impl Unpin for ListGlobalTablesInput
impl UnwindSafe for ListGlobalTablesInput
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