Struct aws_sdk_athena::operation::get_query_runtime_statistics::builders::GetQueryRuntimeStatisticsFluentBuilder
source · pub struct GetQueryRuntimeStatisticsFluentBuilder { /* private fields */ }Expand description
Fluent builder constructing a request to GetQueryRuntimeStatistics.
Returns query execution runtime statistics related to a single execution of a query if you have access to the workgroup in which the query ran. Statistics from the Timeline section of the response object are available as soon as QueryExecutionStatus$State is in a SUCCEEDED or FAILED state. The remaining non-timeline statistics in the response (like stage-level input and output row count and data size) are updated asynchronously and may not be available immediately after a query completes. The non-timeline statistics are also not included when a query has row-level filters defined in Lake Formation.
Implementations§
source§impl GetQueryRuntimeStatisticsFluentBuilder
impl GetQueryRuntimeStatisticsFluentBuilder
sourcepub fn as_input(&self) -> &GetQueryRuntimeStatisticsInputBuilder
pub fn as_input(&self) -> &GetQueryRuntimeStatisticsInputBuilder
Access the GetQueryRuntimeStatistics as a reference.
sourcepub async fn send(
self,
) -> Result<GetQueryRuntimeStatisticsOutput, SdkError<GetQueryRuntimeStatisticsError, HttpResponse>>
pub async fn send( self, ) -> Result<GetQueryRuntimeStatisticsOutput, SdkError<GetQueryRuntimeStatisticsError, HttpResponse>>
Sends the request and returns the response.
If an error occurs, an SdkError will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn customize(
self,
) -> CustomizableOperation<GetQueryRuntimeStatisticsOutput, GetQueryRuntimeStatisticsError, Self>
pub fn customize( self, ) -> CustomizableOperation<GetQueryRuntimeStatisticsOutput, GetQueryRuntimeStatisticsError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
sourcepub fn query_execution_id(self, input: impl Into<String>) -> Self
pub fn query_execution_id(self, input: impl Into<String>) -> Self
The unique ID of the query execution.
sourcepub fn set_query_execution_id(self, input: Option<String>) -> Self
pub fn set_query_execution_id(self, input: Option<String>) -> Self
The unique ID of the query execution.
sourcepub fn get_query_execution_id(&self) -> &Option<String>
pub fn get_query_execution_id(&self) -> &Option<String>
The unique ID of the query execution.
Trait Implementations§
source§impl Clone for GetQueryRuntimeStatisticsFluentBuilder
impl Clone for GetQueryRuntimeStatisticsFluentBuilder
source§fn clone(&self) -> GetQueryRuntimeStatisticsFluentBuilder
fn clone(&self) -> GetQueryRuntimeStatisticsFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreAuto Trait Implementations§
impl Freeze for GetQueryRuntimeStatisticsFluentBuilder
impl !RefUnwindSafe for GetQueryRuntimeStatisticsFluentBuilder
impl Send for GetQueryRuntimeStatisticsFluentBuilder
impl Sync for GetQueryRuntimeStatisticsFluentBuilder
impl Unpin for GetQueryRuntimeStatisticsFluentBuilder
impl !UnwindSafe for GetQueryRuntimeStatisticsFluentBuilder
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