Values.QueryExecutionStatusSourceThe completion date, current state, submission time, and state change reason (if applicable) for the query execution.
type nonrec t = {state : QueryExecutionState.t option;The state of query execution. QUEUED indicates that the query has been submitted to the service, and Athena will execute the query as soon as resources are available. RUNNING indicates that the query is in execution phase. SUCCEEDED indicates that the query completed without errors. FAILED indicates that the query experienced an error and did not complete processing. CANCELLED indicates that a user input interrupted query execution. For queries that experience certain transient errors, the state transitions from RUNNING back to QUEUED. The FAILED state is always terminal with no automatic retry.
*)stateChangeReason : String_.t option;Further detail about the status of the query.
*)submissionDateTime : Date.t option;The date and time that the query was submitted.
*)completionDateTime : Date.t option;The date and time that the query completed.
*)athenaError : AthenaError.t option;Provides information about an Athena query error.
*)}