Struct aws_sdk_athena::operation::batch_get_query_execution::builders::BatchGetQueryExecutionOutputBuilder
source · #[non_exhaustive]pub struct BatchGetQueryExecutionOutputBuilder { /* private fields */ }Expand description
A builder for BatchGetQueryExecutionOutput.
Implementations§
source§impl BatchGetQueryExecutionOutputBuilder
impl BatchGetQueryExecutionOutputBuilder
sourcepub fn query_executions(self, input: QueryExecution) -> Self
pub fn query_executions(self, input: QueryExecution) -> Self
Appends an item to query_executions.
To override the contents of this collection use set_query_executions.
Information about a query execution.
sourcepub fn set_query_executions(self, input: Option<Vec<QueryExecution>>) -> Self
pub fn set_query_executions(self, input: Option<Vec<QueryExecution>>) -> Self
Information about a query execution.
sourcepub fn get_query_executions(&self) -> &Option<Vec<QueryExecution>>
pub fn get_query_executions(&self) -> &Option<Vec<QueryExecution>>
Information about a query execution.
sourcepub fn unprocessed_query_execution_ids(
self,
input: UnprocessedQueryExecutionId,
) -> Self
pub fn unprocessed_query_execution_ids( self, input: UnprocessedQueryExecutionId, ) -> Self
Appends an item to unprocessed_query_execution_ids.
To override the contents of this collection use set_unprocessed_query_execution_ids.
Information about the query executions that failed to run.
sourcepub fn set_unprocessed_query_execution_ids(
self,
input: Option<Vec<UnprocessedQueryExecutionId>>,
) -> Self
pub fn set_unprocessed_query_execution_ids( self, input: Option<Vec<UnprocessedQueryExecutionId>>, ) -> Self
Information about the query executions that failed to run.
sourcepub fn get_unprocessed_query_execution_ids(
&self,
) -> &Option<Vec<UnprocessedQueryExecutionId>>
pub fn get_unprocessed_query_execution_ids( &self, ) -> &Option<Vec<UnprocessedQueryExecutionId>>
Information about the query executions that failed to run.
sourcepub fn build(self) -> BatchGetQueryExecutionOutput
pub fn build(self) -> BatchGetQueryExecutionOutput
Consumes the builder and constructs a BatchGetQueryExecutionOutput.
Trait Implementations§
source§impl Clone for BatchGetQueryExecutionOutputBuilder
impl Clone for BatchGetQueryExecutionOutputBuilder
source§fn clone(&self) -> BatchGetQueryExecutionOutputBuilder
fn clone(&self) -> BatchGetQueryExecutionOutputBuilder
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 Default for BatchGetQueryExecutionOutputBuilder
impl Default for BatchGetQueryExecutionOutputBuilder
source§fn default() -> BatchGetQueryExecutionOutputBuilder
fn default() -> BatchGetQueryExecutionOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for BatchGetQueryExecutionOutputBuilder
impl PartialEq for BatchGetQueryExecutionOutputBuilder
source§fn eq(&self, other: &BatchGetQueryExecutionOutputBuilder) -> bool
fn eq(&self, other: &BatchGetQueryExecutionOutputBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for BatchGetQueryExecutionOutputBuilder
Auto Trait Implementations§
impl Freeze for BatchGetQueryExecutionOutputBuilder
impl RefUnwindSafe for BatchGetQueryExecutionOutputBuilder
impl Send for BatchGetQueryExecutionOutputBuilder
impl Sync for BatchGetQueryExecutionOutputBuilder
impl Unpin for BatchGetQueryExecutionOutputBuilder
impl UnwindSafe for BatchGetQueryExecutionOutputBuilder
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)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.