aws_sdk_athena/client/
batch_get_query_execution.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3    /// Constructs a fluent builder for the [`BatchGetQueryExecution`](crate::operation::batch_get_query_execution::builders::BatchGetQueryExecutionFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`query_execution_ids(impl Into<String>)`](crate::operation::batch_get_query_execution::builders::BatchGetQueryExecutionFluentBuilder::query_execution_ids) / [`set_query_execution_ids(Option<Vec::<String>>)`](crate::operation::batch_get_query_execution::builders::BatchGetQueryExecutionFluentBuilder::set_query_execution_ids):<br>required: **true**<br><p>An array of query execution IDs.</p><br>
7    /// - On success, responds with [`BatchGetQueryExecutionOutput`](crate::operation::batch_get_query_execution::BatchGetQueryExecutionOutput) with field(s):
8    ///   - [`query_executions(Option<Vec::<QueryExecution>>)`](crate::operation::batch_get_query_execution::BatchGetQueryExecutionOutput::query_executions): <p>Information about a query execution.</p>
9    ///   - [`unprocessed_query_execution_ids(Option<Vec::<UnprocessedQueryExecutionId>>)`](crate::operation::batch_get_query_execution::BatchGetQueryExecutionOutput::unprocessed_query_execution_ids): <p>Information about the query executions that failed to run.</p>
10    /// - On failure, responds with [`SdkError<BatchGetQueryExecutionError>`](crate::operation::batch_get_query_execution::BatchGetQueryExecutionError)
11    pub fn batch_get_query_execution(&self) -> crate::operation::batch_get_query_execution::builders::BatchGetQueryExecutionFluentBuilder {
12        crate::operation::batch_get_query_execution::builders::BatchGetQueryExecutionFluentBuilder::new(self.handle.clone())
13    }
14}