Struct aws_sdk_athena::client::fluent_builders::StartQueryExecution [−][src]
pub struct StartQueryExecution<C = DynConnector, M = DefaultMiddleware, R = Standard> { /* fields omitted */ }Expand description
Fluent builder constructing a request to StartQueryExecution.
Runs the SQL query statements contained in the Query. Requires you to
have access to the workgroup in which the query ran. Running queries against an external
catalog requires GetDataCatalog permission to the catalog. For code
samples using the Amazon Web Services SDK for Java, see Examples and
Code Samples in the Amazon Athena User
Guide.
Implementations
impl<C, M, R> StartQueryExecution<C, M, R> where
C: SmithyConnector,
M: SmithyMiddleware<C>,
R: NewRequestPolicy,
impl<C, M, R> StartQueryExecution<C, M, R> where
C: SmithyConnector,
M: SmithyMiddleware<C>,
R: NewRequestPolicy,
pub async fn send(
self
) -> Result<StartQueryExecutionOutput, SdkError<StartQueryExecutionError>> where
R::Policy: SmithyRetryPolicy<StartQueryExecutionInputOperationOutputAlias, StartQueryExecutionOutput, StartQueryExecutionError, StartQueryExecutionInputOperationRetryAlias>,
pub async fn send(
self
) -> Result<StartQueryExecutionOutput, SdkError<StartQueryExecutionError>> where
R::Policy: SmithyRetryPolicy<StartQueryExecutionInputOperationOutputAlias, StartQueryExecutionOutput, StartQueryExecutionError, StartQueryExecutionInputOperationRetryAlias>,
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.
The SQL query statements to be executed.
The SQL query statements to be executed.
A unique case-sensitive string used to ensure the request to create the query is
idempotent (executes only once). If another StartQueryExecution request is
received, the same response is returned and another query is not created. If a parameter
has changed, for example, the QueryString, an error is returned.
This token is listed as not required because Amazon Web Services SDKs (for example the Amazon Web Services SDK for Java) auto-generate the token for users. If you are not using the Amazon Web Services SDK or the Amazon Web Services CLI, you must provide this token or the action will fail.
A unique case-sensitive string used to ensure the request to create the query is
idempotent (executes only once). If another StartQueryExecution request is
received, the same response is returned and another query is not created. If a parameter
has changed, for example, the QueryString, an error is returned.
This token is listed as not required because Amazon Web Services SDKs (for example the Amazon Web Services SDK for Java) auto-generate the token for users. If you are not using the Amazon Web Services SDK or the Amazon Web Services CLI, you must provide this token or the action will fail.
The database within which the query executes.
The database within which the query executes.
Specifies information about where and how to save the results of the query execution. If the query runs in a workgroup, then workgroup's settings may override query settings. This affects the query results location. The workgroup settings override is specified in EnforceWorkGroupConfiguration (true/false) in the WorkGroupConfiguration. See WorkGroupConfiguration$EnforceWorkGroupConfiguration.
Specifies information about where and how to save the results of the query execution. If the query runs in a workgroup, then workgroup's settings may override query settings. This affects the query results location. The workgroup settings override is specified in EnforceWorkGroupConfiguration (true/false) in the WorkGroupConfiguration. See WorkGroupConfiguration$EnforceWorkGroupConfiguration.
The name of the workgroup in which the query is being started.
The name of the workgroup in which the query is being started.
Trait Implementations
Auto Trait Implementations
impl<C = DynConnector, M = DefaultMiddleware, R = Standard> !RefUnwindSafe for StartQueryExecution<C, M, R>
impl<C, M, R> Send for StartQueryExecution<C, M, R> where
C: Send + Sync,
M: Send + Sync,
R: Send + Sync,
impl<C, M, R> Sync for StartQueryExecution<C, M, R> where
C: Send + Sync,
M: Send + Sync,
R: Send + Sync,
impl<C, M, R> Unpin for StartQueryExecution<C, M, R>
impl<C = DynConnector, M = DefaultMiddleware, R = Standard> !UnwindSafe for StartQueryExecution<C, M, R>
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more
