#[non_exhaustive]pub struct ListTablesOutputBuilder { /* private fields */ }
Expand description
A builder for ListTablesOutput
.
Implementations§
source§impl ListTablesOutputBuilder
impl ListTablesOutputBuilder
sourcepub fn tables(self, input: Table) -> Self
pub fn tables(self, input: Table) -> Self
Appends an item to tables
.
To override the contents of this collection use set_tables
.
A list of tables.
sourcepub fn set_tables(self, input: Option<Vec<Table>>) -> Self
pub fn set_tables(self, input: Option<Vec<Table>>) -> Self
A list of tables.
sourcepub fn get_tables(&self) -> &Option<Vec<Table>>
pub fn get_tables(&self) -> &Option<Vec<Table>>
A list of tables.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
A token to specify where to start paginating. This is the NextToken from a previously truncated response.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
A token to specify where to start paginating. This is the NextToken from a previously truncated response.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
A token to specify where to start paginating. This is the NextToken from a previously truncated response.
sourcepub fn build(self) -> ListTablesOutput
pub fn build(self) -> ListTablesOutput
Consumes the builder and constructs a ListTablesOutput
.
Trait Implementations§
source§impl Clone for ListTablesOutputBuilder
impl Clone for ListTablesOutputBuilder
source§fn clone(&self) -> ListTablesOutputBuilder
fn clone(&self) -> ListTablesOutputBuilder
Returns a copy 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 ListTablesOutputBuilder
impl Debug for ListTablesOutputBuilder
source§impl Default for ListTablesOutputBuilder
impl Default for ListTablesOutputBuilder
source§fn default() -> ListTablesOutputBuilder
fn default() -> ListTablesOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<ListTablesOutputBuilder> for ListTablesOutputBuilder
impl PartialEq<ListTablesOutputBuilder> for ListTablesOutputBuilder
source§fn eq(&self, other: &ListTablesOutputBuilder) -> bool
fn eq(&self, other: &ListTablesOutputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ListTablesOutputBuilder
Auto Trait Implementations§
impl RefUnwindSafe for ListTablesOutputBuilder
impl Send for ListTablesOutputBuilder
impl Sync for ListTablesOutputBuilder
impl Unpin for ListTablesOutputBuilder
impl UnwindSafe for ListTablesOutputBuilder
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