QueryExecutionStatus
public struct QueryExecutionStatus : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
The date and time that the query completed.
Declaration
Swift
public let completionDateTime: TimeStamp?
-
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. Athena automatically retries your queries in cases of certain transient errors. As a result, you may see the query state transition from RUNNING or FAILED to QUEUED.
Declaration
Swift
public let state: QueryExecutionState?
-
Further detail about the status of the query.
Declaration
Swift
public let stateChangeReason: String?
-
The date and time that the query was submitted.
Declaration
Swift
public let submissionDateTime: TimeStamp?
-
Undocumented
Declaration
Swift
public init(completionDateTime: TimeStamp? = nil, state: QueryExecutionState? = nil, stateChangeReason: String? = nil, submissionDateTime: TimeStamp? = nil)