public static interface QueryExecutionStatus.Builder extends CopyableBuilder<QueryExecutionStatus.Builder,QueryExecutionStatus>
| Modifier and Type | Method and Description |
|---|---|
QueryExecutionStatus.Builder |
completionDateTime(Instant completionDateTime)
The date and time that the query completed.
|
QueryExecutionStatus.Builder |
state(QueryExecutionState state)
The state of query execution.
|
QueryExecutionStatus.Builder |
state(String state)
The state of query execution.
|
QueryExecutionStatus.Builder |
stateChangeReason(String stateChangeReason)
Further detail about the status of the query.
|
QueryExecutionStatus.Builder |
submissionDateTime(Instant submissionDateTime)
The date and time that the query was submitted.
|
copyapply, buildQueryExecutionStatus.Builder state(String state)
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.
state - 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.QueryExecutionState,
QueryExecutionStateQueryExecutionStatus.Builder state(QueryExecutionState state)
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.
state - 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.QueryExecutionState,
QueryExecutionStateQueryExecutionStatus.Builder stateChangeReason(String stateChangeReason)
Further detail about the status of the query.
stateChangeReason - Further detail about the status of the query.QueryExecutionStatus.Builder submissionDateTime(Instant submissionDateTime)
The date and time that the query was submitted.
submissionDateTime - The date and time that the query was submitted.QueryExecutionStatus.Builder completionDateTime(Instant completionDateTime)
The date and time that the query completed.
completionDateTime - The date and time that the query completed.Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.