List Query Executions
athena_list_query_executions | R Documentation |
Provides a list of available query execution IDs for the queries in the specified workgroup¶
Description¶
Provides a list of available query execution IDs for the queries in the specified workgroup. Athena keeps a query history for 45 days. If a workgroup is not specified, returns a list of query execution IDs for the primary workgroup. Requires you to have access to the workgroup in which the queries ran.
Usage¶
athena_list_query_executions(NextToken, MaxResults, WorkGroup)
Arguments¶
NextToken |
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 |
MaxResults |
The maximum number of query executions to return in this request. |
WorkGroup |
The name of the workgroup from which queries are being returned. If a workgroup is not specified, a list of available query execution IDs for the queries in the primary workgroup is returned. |
Value¶
A list with the following syntax:
list(
QueryExecutionIds = list(
"string"
),
NextToken = "string"
)
Request syntax¶
svc$list_query_executions(
NextToken = "string",
MaxResults = 123,
WorkGroup = "string"
)