pub struct GetQueryResults { /* private fields */ }Expand description
Fluent builder constructing a request to GetQueryResults.
Returns the results from the specified query.
Only the fields requested in the query are returned, along with a @ptr field, which is the identifier for the log record. You can use the value of @ptr in a GetLogRecord operation to get the full log record.
GetQueryResults does not start a query execution. To run a query, use StartQuery.
If the value of the Status field in the output is Running, this operation returns only partial results. If you see a value of Scheduled or Running for the status, you can retry the operation later to see the final results.
Implementations§
source§impl GetQueryResults
impl GetQueryResults
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<GetQueryResults, AwsResponseRetryClassifier>, SdkError<GetQueryResultsError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<GetQueryResults, AwsResponseRetryClassifier>, SdkError<GetQueryResultsError>>
Consume this builder, creating a customizable operation that can be modified before being sent. The operation’s inner http::Request can be modified as well.
sourcepub async fn send(
self
) -> Result<GetQueryResultsOutput, SdkError<GetQueryResultsError>>
pub async fn send(
self
) -> Result<GetQueryResultsOutput, SdkError<GetQueryResultsError>>
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 set_query_id(self, input: Option<String>) -> Self
pub fn set_query_id(self, input: Option<String>) -> Self
The ID number of the query.
Trait Implementations§
source§impl Clone for GetQueryResults
impl Clone for GetQueryResults
source§fn clone(&self) -> GetQueryResults
fn clone(&self) -> GetQueryResults
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more