#[non_exhaustive]pub struct SearchTablesOutputBuilder { /* private fields */ }Expand description
A builder for SearchTablesOutput.
Implementations§
Source§impl SearchTablesOutputBuilder
impl SearchTablesOutputBuilder
Sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
A continuation token, present if the current list segment is not the last.
Sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
A continuation token, present if the current list segment is not the last.
Sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
A continuation token, present if the current list segment is not the last.
Sourcepub fn table_list(self, input: Table) -> Self
pub fn table_list(self, input: Table) -> Self
Appends an item to table_list.
To override the contents of this collection use set_table_list.
A list of the requested Table objects. The SearchTables response returns only the tables that you have access to.
Sourcepub fn set_table_list(self, input: Option<Vec<Table>>) -> Self
pub fn set_table_list(self, input: Option<Vec<Table>>) -> Self
A list of the requested Table objects. The SearchTables response returns only the tables that you have access to.
Sourcepub fn get_table_list(&self) -> &Option<Vec<Table>>
pub fn get_table_list(&self) -> &Option<Vec<Table>>
A list of the requested Table objects. The SearchTables response returns only the tables that you have access to.
Sourcepub fn build(self) -> SearchTablesOutput
pub fn build(self) -> SearchTablesOutput
Consumes the builder and constructs a SearchTablesOutput.
Trait Implementations§
Source§impl Clone for SearchTablesOutputBuilder
impl Clone for SearchTablesOutputBuilder
Source§fn clone(&self) -> SearchTablesOutputBuilder
fn clone(&self) -> SearchTablesOutputBuilder
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 SearchTablesOutputBuilder
impl Debug for SearchTablesOutputBuilder
Source§impl Default for SearchTablesOutputBuilder
impl Default for SearchTablesOutputBuilder
Source§fn default() -> SearchTablesOutputBuilder
fn default() -> SearchTablesOutputBuilder
Returns the “default value” for a type. Read more
Source§impl PartialEq for SearchTablesOutputBuilder
impl PartialEq for SearchTablesOutputBuilder
Source§fn eq(&self, other: &SearchTablesOutputBuilder) -> bool
fn eq(&self, other: &SearchTablesOutputBuilder) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SearchTablesOutputBuilder
Auto Trait Implementations§
impl Freeze for SearchTablesOutputBuilder
impl RefUnwindSafe for SearchTablesOutputBuilder
impl Send for SearchTablesOutputBuilder
impl Sync for SearchTablesOutputBuilder
impl Unpin for SearchTablesOutputBuilder
impl UnsafeUnpin for SearchTablesOutputBuilder
impl UnwindSafe for SearchTablesOutputBuilder
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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.