awswrangler.athena.get_query_execution

awswrangler.athena.get_query_execution(query_execution_id: str, boto3_session: Session | None = None) dict[str, Any]

Fetch query execution details.

https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/athena.html#Athena.Client.get_query_execution

Parameters:
  • query_execution_id (str) – Athena query execution ID.

  • boto3_session (boto3.Session(), optional) – Boto3 Session. The default boto3 session will be used if boto3_session receive None.

Returns:

Dictionary with the get_query_execution response.

Return type:

Dict[str, Any]

Examples

>>> import awswrangler as wr
>>> res = wr.athena.get_query_execution(query_execution_id='query-execution-id')