#[non_exhaustive]pub struct ExecuteQueryInput { /* private fields */ }Implementations§
source§impl ExecuteQueryInput
impl ExecuteQueryInput
sourcepub fn workspace_id(&self) -> Option<&str>
pub fn workspace_id(&self) -> Option<&str>
The ID of the workspace.
sourcepub fn query_statement(&self) -> Option<&str>
pub fn query_statement(&self) -> Option<&str>
The query statement.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of results to return at one time. The default is 25.
Valid Range: Minimum value of 1. Maximum value of 250.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
The string that specifies the next page of results.
source§impl ExecuteQueryInput
impl ExecuteQueryInput
sourcepub fn builder() -> ExecuteQueryInputBuilder
pub fn builder() -> ExecuteQueryInputBuilder
Creates a new builder-style object to manufacture ExecuteQueryInput.
source§impl ExecuteQueryInput
impl ExecuteQueryInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ExecuteQuery, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation( &self, _config: &Config ) -> Result<Operation<ExecuteQuery, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<ExecuteQuery>
Trait Implementations§
source§impl Clone for ExecuteQueryInput
impl Clone for ExecuteQueryInput
source§fn clone(&self) -> ExecuteQueryInput
fn clone(&self) -> ExecuteQueryInput
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 Debug for ExecuteQueryInput
impl Debug for ExecuteQueryInput
source§impl PartialEq<ExecuteQueryInput> for ExecuteQueryInput
impl PartialEq<ExecuteQueryInput> for ExecuteQueryInput
source§fn eq(&self, other: &ExecuteQueryInput) -> bool
fn eq(&self, other: &ExecuteQueryInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.