#[non_exhaustive]pub struct ListQueryExecutionsOutputBuilder { /* private fields */ }Expand description
A builder for ListQueryExecutionsOutput.
Implementations§
Source§impl ListQueryExecutionsOutputBuilder
impl ListQueryExecutionsOutputBuilder
Sourcepub fn query_execution_ids(self, input: impl Into<String>) -> Self
pub fn query_execution_ids(self, input: impl Into<String>) -> Self
Appends an item to query_execution_ids.
To override the contents of this collection use set_query_execution_ids.
The unique IDs of each query execution as an array of strings.
Sourcepub fn set_query_execution_ids(self, input: Option<Vec<String>>) -> Self
pub fn set_query_execution_ids(self, input: Option<Vec<String>>) -> Self
The unique IDs of each query execution as an array of strings.
Sourcepub fn get_query_execution_ids(&self) -> &Option<Vec<String>>
pub fn get_query_execution_ids(&self) -> &Option<Vec<String>>
The unique IDs of each query execution as an array of strings.
Sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
A token to be used by the next request if this request is truncated.
Sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
A token to be used by the next request if this request is truncated.
Sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
A token to be used by the next request if this request is truncated.
Sourcepub fn build(self) -> ListQueryExecutionsOutput
pub fn build(self) -> ListQueryExecutionsOutput
Consumes the builder and constructs a ListQueryExecutionsOutput.
Trait Implementations§
Source§impl Clone for ListQueryExecutionsOutputBuilder
impl Clone for ListQueryExecutionsOutputBuilder
Source§fn clone(&self) -> ListQueryExecutionsOutputBuilder
fn clone(&self) -> ListQueryExecutionsOutputBuilder
Returns a duplicate 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 Default for ListQueryExecutionsOutputBuilder
impl Default for ListQueryExecutionsOutputBuilder
Source§fn default() -> ListQueryExecutionsOutputBuilder
fn default() -> ListQueryExecutionsOutputBuilder
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListQueryExecutionsOutputBuilder
impl PartialEq for ListQueryExecutionsOutputBuilder
Source§fn eq(&self, other: &ListQueryExecutionsOutputBuilder) -> bool
fn eq(&self, other: &ListQueryExecutionsOutputBuilder) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ListQueryExecutionsOutputBuilder
Auto Trait Implementations§
impl Freeze for ListQueryExecutionsOutputBuilder
impl RefUnwindSafe for ListQueryExecutionsOutputBuilder
impl Send for ListQueryExecutionsOutputBuilder
impl Sync for ListQueryExecutionsOutputBuilder
impl Unpin for ListQueryExecutionsOutputBuilder
impl UnsafeUnpin for ListQueryExecutionsOutputBuilder
impl UnwindSafe for ListQueryExecutionsOutputBuilder
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.