CopyableBuilder<QueryExecutionStatus.Builder,QueryExecutionStatus>
, SdkBuilder<QueryExecutionStatus.Builder,QueryExecutionStatus>
public static interface QueryExecutionStatus.Builder extends CopyableBuilder<QueryExecutionStatus.Builder,QueryExecutionStatus>
Modifier and Type | Method | Description |
---|---|---|
QueryExecutionStatus.Builder |
completionDateTime(Date completionDateTime) |
The date and time that the query completed.
|
QueryExecutionStatus.Builder |
state(String state) |
The state of query execution.
|
QueryExecutionStatus.Builder |
state(QueryExecutionState state) |
The state of query execution.
|
QueryExecutionStatus.Builder |
stateChangeReason(String stateChangeReason) |
Further detail about the status of the query.
|
QueryExecutionStatus.Builder |
submissionDateTime(Date submissionDateTime) |
The date and time that the query was submitted.
|
copy
apply, build
QueryExecutionStatus.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
QueryExecutionStatus.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
QueryExecutionStatus.Builder stateChangeReason(String stateChangeReason)
Further detail about the status of the query.
stateChangeReason
- Further detail about the status of the query.QueryExecutionStatus.Builder submissionDateTime(Date submissionDateTime)
The date and time that the query was submitted.
submissionDateTime
- The date and time that the query was submitted.QueryExecutionStatus.Builder completionDateTime(Date 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.