#[non_exhaustive]pub struct ListTablesOutputBuilder { /* private fields */ }
Expand description
A builder for ListTablesOutput
.
Implementations§
source§impl ListTablesOutputBuilder
impl ListTablesOutputBuilder
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 tables(self, input: TableSummary) -> Self
pub fn tables(self, input: TableSummary) -> 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<TableSummary>>) -> Self
pub fn set_tables(self, input: Option<Vec<TableSummary>>) -> Self
A list of tables.
sourcepub fn get_tables(&self) -> &Option<Vec<TableSummary>>
pub fn get_tables(&self) -> &Option<Vec<TableSummary>>
A list of tables.
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 for ListTablesOutputBuilder
impl PartialEq 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 Freeze for ListTablesOutputBuilder
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.