Class: Aws::LakeFormation::Types::GetQueryStateResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::LakeFormation::Types::GetQueryStateResponse
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-lakeformation/types.rb
Overview
A structure for the output.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#error ⇒ String
An error message when the operation fails.
-
#state ⇒ String
The state of a query previously submitted.
Instance Attribute Details
#error ⇒ String
An error message when the operation fails.
1604 1605 1606 1607 1608 1609 |
# File 'lib/aws-sdk-lakeformation/types.rb', line 1604 class GetQueryStateResponse < Struct.new( :error, :state) SENSITIVE = [] include Aws::Structure end |
#state ⇒ String
The state of a query previously submitted. The possible states are:
-
PENDING: the query is pending.
-
WORKUNITS_AVAILABLE: some work units are ready for retrieval and execution.
-
FINISHED: the query planning finished successfully, and all work units are ready for retrieval and execution.
-
ERROR: an error occurred with the query, such as an invalid query ID or a backend error.
1604 1605 1606 1607 1608 1609 |
# File 'lib/aws-sdk-lakeformation/types.rb', line 1604 class GetQueryStateResponse < Struct.new( :error, :state) SENSITIVE = [] include Aws::Structure end |