Struct aws_sdk_athena::output::get_query_results_output::Builder
source · pub struct Builder { /* private fields */ }
Expand description
A builder for GetQueryResultsOutput
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn update_count(self, input: i64) -> Self
pub fn update_count(self, input: i64) -> Self
The number of rows inserted with a CREATE TABLE AS SELECT
statement.
sourcepub fn set_update_count(self, input: Option<i64>) -> Self
pub fn set_update_count(self, input: Option<i64>) -> Self
The number of rows inserted with a CREATE TABLE AS SELECT
statement.
sourcepub fn result_set(self, input: ResultSet) -> Self
pub fn result_set(self, input: ResultSet) -> Self
The results of the query execution.
sourcepub fn set_result_set(self, input: Option<ResultSet>) -> Self
pub fn set_result_set(self, input: Option<ResultSet>) -> Self
The results of the query execution.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
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.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
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.
sourcepub fn build(self) -> GetQueryResultsOutput
pub fn build(self) -> GetQueryResultsOutput
Consumes the builder and constructs a GetQueryResultsOutput
.