Values.GetQueryResultsInputSourceStreams the results of a single query execution specified by QueryExecutionId from the Athena query results location in Amazon S3. For more information, see Working with query results, recent queries, and output files in the Amazon Athena User Guide. This request does not execute the query but returns results. Use StartQueryExecution to run a query. To stream query results successfully, the IAM principal with permission to call GetQueryResults also must have permissions to the Amazon S3 GetObject action for the Athena query results location. IAM principals with permission to the Amazon S3 GetObject action for the query results location are able to retrieve query results from Amazon S3 even if permission to the GetQueryResults action is denied. To restrict user or role access, ensure that Amazon S3 permissions to the Athena query location are denied.
type nonrec t = {queryExecutionId : QueryExecutionId.t;The unique ID of the query execution.
*)nextToken : Token.t option;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.
*)maxResults : MaxQueryResults.t option;The maximum number of results (rows) to return in this request.
*)queryResultType : QueryResultType.t option;When you set this to DATA_ROWS or empty, GetQueryResults returns the query results in rows. If set to DATA_MANIFEST, it returns the manifest file in rows. Only the query types CREATE TABLE AS SELECT, UNLOAD, and INSERT can generate a manifest file. If you use DATA_MANIFEST for other query types, the query will fail.
*)}val make :
?nextToken:??? ->
?maxResults:??? ->
?queryResultType:??? ->
queryExecutionId:QueryExecutionId.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `Integer of MaxQueryResults.t
| `String of QueryExecutionId.t ])
list ]