QueryExecutionStatus class

The completion date, current state, submission time, and state change reason (if applicable) for the query execution.

Constructors

QueryExecutionStatus({DateTime? completionDateTime, QueryExecutionState? state, String? stateChangeReason, DateTime? submissionDateTime})
QueryExecutionStatus.fromJson(Map<String, dynamic> json)
factory

Properties

completionDateTime DateTime?
The date and time that the query completed.
final
hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
state QueryExecutionState?
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.
final
stateChangeReason String?
Further detail about the status of the query.
final
submissionDateTime DateTime?
The date and time that the query was submitted.
final

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited