Struct aws_sdk_athena::input::StartQueryExecutionInput
source · #[non_exhaustive]pub struct StartQueryExecutionInput { /* private fields */ }
Implementations§
source§impl StartQueryExecutionInput
impl StartQueryExecutionInput
sourcepub async fn make_operation(
self,
_config: &Config
) -> Result<Operation<StartQueryExecution, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation( self, _config: &Config ) -> Result<Operation<StartQueryExecution, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<StartQueryExecution
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture StartQueryExecutionInput
.
source§impl StartQueryExecutionInput
impl StartQueryExecutionInput
sourcepub fn query_string(&self) -> Option<&str>
pub fn query_string(&self) -> Option<&str>
The SQL query statements to be executed.
sourcepub fn client_request_token(&self) -> Option<&str>
pub fn client_request_token(&self) -> Option<&str>
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.
sourcepub fn query_execution_context(&self) -> Option<&QueryExecutionContext>
pub fn query_execution_context(&self) -> Option<&QueryExecutionContext>
The database within which the query executes.
sourcepub fn result_configuration(&self) -> Option<&ResultConfiguration>
pub fn result_configuration(&self) -> Option<&ResultConfiguration>
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
.
sourcepub fn work_group(&self) -> Option<&str>
pub fn work_group(&self) -> Option<&str>
The name of the workgroup in which the query is being started.
sourcepub fn execution_parameters(&self) -> Option<&[String]>
pub fn execution_parameters(&self) -> Option<&[String]>
A list of values for the parameters in a query. The values are applied sequentially to the parameters in the query in the order in which the parameters occur.
sourcepub fn result_reuse_configuration(&self) -> Option<&ResultReuseConfiguration>
pub fn result_reuse_configuration(&self) -> Option<&ResultReuseConfiguration>
Specifies the query result reuse behavior for the query.
Trait Implementations§
source§impl Clone for StartQueryExecutionInput
impl Clone for StartQueryExecutionInput
source§fn clone(&self) -> StartQueryExecutionInput
fn clone(&self) -> StartQueryExecutionInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for StartQueryExecutionInput
impl Debug for StartQueryExecutionInput
source§impl PartialEq<StartQueryExecutionInput> for StartQueryExecutionInput
impl PartialEq<StartQueryExecutionInput> for StartQueryExecutionInput
source§fn eq(&self, other: &StartQueryExecutionInput) -> bool
fn eq(&self, other: &StartQueryExecutionInput) -> bool
self
and other
values to be equal, and is used
by ==
.