Struct aws_sdk_dynamodb::input::list_tables_input::Builder
source · [−]pub struct Builder { /* private fields */ }
Expand description
A builder for ListTablesInput
.
Implementations
sourceimpl Builder
impl Builder
sourcepub fn exclusive_start_table_name(self, input: impl Into<String>) -> Self
pub fn exclusive_start_table_name(self, input: impl Into<String>) -> Self
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.
sourcepub fn set_exclusive_start_table_name(self, input: Option<String>) -> Self
pub fn set_exclusive_start_table_name(self, input: Option<String>) -> Self
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.
sourcepub fn limit(self, input: i32) -> Self
pub fn limit(self, input: i32) -> Self
A maximum number of table names to return. If this parameter is not specified, the limit is 100.
sourcepub fn set_limit(self, input: Option<i32>) -> Self
pub fn set_limit(self, input: Option<i32>) -> Self
A maximum number of table names to return. If this parameter is not specified, the limit is 100.
sourcepub fn build(self) -> Result<ListTablesInput, BuildError>
pub fn build(self) -> Result<ListTablesInput, BuildError>
Consumes the builder and constructs a ListTablesInput
.
Trait Implementations
impl StructuralPartialEq for Builder
Auto Trait Implementations
impl RefUnwindSafe for Builder
impl Send for Builder
impl Sync for Builder
impl Unpin for Builder
impl UnwindSafe for Builder
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more