Struct rusoto_athena::QueryExecutionStatus [] [src]

pub struct QueryExecutionStatus {
    pub completion_date_time: Option<f64>,
    pub state: Option<String>,
    pub state_change_reason: Option<String>,
    pub submission_date_time: Option<f64>,
}

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

Fields

The date and time that the query completed.

The state of query execution. SUBMITTED indicates that the query is queued for execution. RUNNING indicates that the query is scanning data and returning results. SUCCEEDED indicates that the query completed without error. FAILED indicates that the query experienced an error and did not complete processing. CANCELLED indicates that user input interrupted query execution.

Further detail about the status of the query.

The date and time that the query was submitted.

Trait Implementations

impl Default for QueryExecutionStatus
[src]

[src]

Returns the "default value" for a type. Read more

impl Debug for QueryExecutionStatus
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for QueryExecutionStatus
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations