#[non_exhaustive]pub struct ListPreparedStatementsOutputBuilder { /* private fields */ }Expand description
A builder for ListPreparedStatementsOutput.
Implementations§
Source§impl ListPreparedStatementsOutputBuilder
impl ListPreparedStatementsOutputBuilder
Sourcepub fn prepared_statements(self, input: PreparedStatementSummary) -> Self
pub fn prepared_statements(self, input: PreparedStatementSummary) -> Self
Appends an item to prepared_statements.
To override the contents of this collection use set_prepared_statements.
The list of prepared statements for the workgroup.
Sourcepub fn set_prepared_statements(
self,
input: Option<Vec<PreparedStatementSummary>>,
) -> Self
pub fn set_prepared_statements( self, input: Option<Vec<PreparedStatementSummary>>, ) -> Self
The list of prepared statements for the workgroup.
Sourcepub fn get_prepared_statements(&self) -> &Option<Vec<PreparedStatementSummary>>
pub fn get_prepared_statements(&self) -> &Option<Vec<PreparedStatementSummary>>
The list of prepared statements for the workgroup.
Sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
A token generated by the Athena service that specifies where to continue pagination if a previous request was truncated. To obtain the next set of pages, pass in the NextToken from the response object of the previous page call.
Sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
A token generated by the Athena service that specifies where to continue pagination if a previous request was truncated. To obtain the next set of pages, pass in the NextToken from the response object of the previous page call.
Sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
A token generated by the Athena service that specifies where to continue pagination if a previous request was truncated. To obtain the next set of pages, pass in the NextToken from the response object of the previous page call.
Sourcepub fn build(self) -> ListPreparedStatementsOutput
pub fn build(self) -> ListPreparedStatementsOutput
Consumes the builder and constructs a ListPreparedStatementsOutput.
Trait Implementations§
Source§impl Clone for ListPreparedStatementsOutputBuilder
impl Clone for ListPreparedStatementsOutputBuilder
Source§fn clone(&self) -> ListPreparedStatementsOutputBuilder
fn clone(&self) -> ListPreparedStatementsOutputBuilder
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Default for ListPreparedStatementsOutputBuilder
impl Default for ListPreparedStatementsOutputBuilder
Source§fn default() -> ListPreparedStatementsOutputBuilder
fn default() -> ListPreparedStatementsOutputBuilder
Source§impl PartialEq for ListPreparedStatementsOutputBuilder
impl PartialEq for ListPreparedStatementsOutputBuilder
Source§fn eq(&self, other: &ListPreparedStatementsOutputBuilder) -> bool
fn eq(&self, other: &ListPreparedStatementsOutputBuilder) -> bool
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ListPreparedStatementsOutputBuilder
Auto Trait Implementations§
impl Freeze for ListPreparedStatementsOutputBuilder
impl RefUnwindSafe for ListPreparedStatementsOutputBuilder
impl Send for ListPreparedStatementsOutputBuilder
impl Sync for ListPreparedStatementsOutputBuilder
impl Unpin for ListPreparedStatementsOutputBuilder
impl UnsafeUnpin for ListPreparedStatementsOutputBuilder
impl UnwindSafe for ListPreparedStatementsOutputBuilder
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
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>
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>
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 more