pub struct GetQueryResultsInput {
pub max_results: Option<i64>,
pub next_token: Option<String>,
pub query_execution_id: String,
}
Fields§
§max_results: Option<i64>
The maximum number of results (rows) to return in this request.
next_token: Option<String>
A token generated by the Athena service that specifies where to continue pagination if a previous request was truncated. To obtain the next set of pages, pass in the NextToken
from the response object of the previous page call.
query_execution_id: String
The unique ID of the query execution.
Trait Implementations§
Source§impl Clone for GetQueryResultsInput
impl Clone for GetQueryResultsInput
Source§fn clone(&self) -> GetQueryResultsInput
fn clone(&self) -> GetQueryResultsInput
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 GetQueryResultsInput
impl Debug for GetQueryResultsInput
Source§impl Default for GetQueryResultsInput
impl Default for GetQueryResultsInput
Source§fn default() -> GetQueryResultsInput
fn default() -> GetQueryResultsInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for GetQueryResultsInput
impl PartialEq for GetQueryResultsInput
Source§impl Serialize for GetQueryResultsInput
impl Serialize for GetQueryResultsInput
impl StructuralPartialEq for GetQueryResultsInput
Auto Trait Implementations§
impl Freeze for GetQueryResultsInput
impl RefUnwindSafe for GetQueryResultsInput
impl Send for GetQueryResultsInput
impl Sync for GetQueryResultsInput
impl Unpin for GetQueryResultsInput
impl UnwindSafe for GetQueryResultsInput
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more