#[non_exhaustive]pub struct ListStatementsOutputBuilder { /* private fields */ }Expand description
A builder for ListStatementsOutput.
Implementations§
source§impl ListStatementsOutputBuilder
impl ListStatementsOutputBuilder
sourcepub fn statements(self, input: Statement) -> Self
pub fn statements(self, input: Statement) -> Self
Appends an item to statements.
To override the contents of this collection use set_statements.
Returns the list of statements.
sourcepub fn set_statements(self, input: Option<Vec<Statement>>) -> Self
pub fn set_statements(self, input: Option<Vec<Statement>>) -> Self
Returns the list of statements.
sourcepub fn get_statements(&self) -> &Option<Vec<Statement>>
pub fn get_statements(&self) -> &Option<Vec<Statement>>
Returns the list of statements.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
A continuation token, if not all statements have yet been returned.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
A continuation token, if not all statements have yet been returned.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
A continuation token, if not all statements have yet been returned.
sourcepub fn build(self) -> ListStatementsOutput
pub fn build(self) -> ListStatementsOutput
Consumes the builder and constructs a ListStatementsOutput.
Trait Implementations§
source§impl Clone for ListStatementsOutputBuilder
impl Clone for ListStatementsOutputBuilder
source§fn clone(&self) -> ListStatementsOutputBuilder
fn clone(&self) -> ListStatementsOutputBuilder
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 ListStatementsOutputBuilder
impl Debug for ListStatementsOutputBuilder
source§impl Default for ListStatementsOutputBuilder
impl Default for ListStatementsOutputBuilder
source§fn default() -> ListStatementsOutputBuilder
fn default() -> ListStatementsOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<ListStatementsOutputBuilder> for ListStatementsOutputBuilder
impl PartialEq<ListStatementsOutputBuilder> for ListStatementsOutputBuilder
source§fn eq(&self, other: &ListStatementsOutputBuilder) -> bool
fn eq(&self, other: &ListStatementsOutputBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ListStatementsOutputBuilder
Auto Trait Implementations§
impl RefUnwindSafe for ListStatementsOutputBuilder
impl Send for ListStatementsOutputBuilder
impl Sync for ListStatementsOutputBuilder
impl Unpin for ListStatementsOutputBuilder
impl UnwindSafe for ListStatementsOutputBuilder
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