Struct aws_sdk_redshiftdata::operation::list_statements::builders::ListStatementsOutputBuilder
source · #[non_exhaustive]pub struct ListStatementsOutputBuilder { /* private fields */ }Expand description
A builder for ListStatementsOutput.
Implementations§
source§impl ListStatementsOutputBuilder
impl ListStatementsOutputBuilder
sourcepub fn statements(self, input: StatementData) -> Self
pub fn statements(self, input: StatementData) -> Self
Appends an item to statements.
To override the contents of this collection use set_statements.
The SQL statements.
sourcepub fn set_statements(self, input: Option<Vec<StatementData>>) -> Self
pub fn set_statements(self, input: Option<Vec<StatementData>>) -> Self
The SQL statements.
sourcepub fn get_statements(&self) -> &Option<Vec<StatementData>>
pub fn get_statements(&self) -> &Option<Vec<StatementData>>
The SQL statements.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
A value that indicates the starting point for the next set of response records in a subsequent request. If a value is returned in a response, you can retrieve the next set of records by providing this returned NextToken value in the next NextToken parameter and retrying the command. If the NextToken field is empty, all response records have been retrieved for the request.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
A value that indicates the starting point for the next set of response records in a subsequent request. If a value is returned in a response, you can retrieve the next set of records by providing this returned NextToken value in the next NextToken parameter and retrying the command. If the NextToken field is empty, all response records have been retrieved for the request.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
A value that indicates the starting point for the next set of response records in a subsequent request. If a value is returned in a response, you can retrieve the next set of records by providing this returned NextToken value in the next NextToken parameter and retrying the command. If the NextToken field is empty, all response records have been retrieved for the request.
sourcepub fn build(self) -> Result<ListStatementsOutput, BuildError>
pub fn build(self) -> Result<ListStatementsOutput, BuildError>
Consumes the builder and constructs a ListStatementsOutput.
This method will fail if any of the following fields are not set:
Trait Implementations§
source§impl Clone for ListStatementsOutputBuilder
impl Clone for ListStatementsOutputBuilder
source§fn clone(&self) -> ListStatementsOutputBuilder
fn clone(&self) -> ListStatementsOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
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
source§impl PartialEq for ListStatementsOutputBuilder
impl PartialEq for ListStatementsOutputBuilder
source§fn eq(&self, other: &ListStatementsOutputBuilder) -> bool
fn eq(&self, other: &ListStatementsOutputBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ListStatementsOutputBuilder
Auto Trait Implementations§
impl Freeze for ListStatementsOutputBuilder
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
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