Class: Aws::LakeFormation::Types::GetQueryStateResponse

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-lakeformation/lib/aws-sdk-lakeformation/types.rb

Overview

A structure for the output.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#errorString

An error message when the operation fails.

Returns:

  • (String)


1462
1463
1464
1465
1466
1467
# File 'gems/aws-sdk-lakeformation/lib/aws-sdk-lakeformation/types.rb', line 1462

class GetQueryStateResponse < Struct.new(
  :error,
  :state)
  SENSITIVE = []
  include Aws::Structure
end

#stateString

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.

Returns:

  • (String)


1462
1463
1464
1465
1466
1467
# File 'gems/aws-sdk-lakeformation/lib/aws-sdk-lakeformation/types.rb', line 1462

class GetQueryStateResponse < Struct.new(
  :error,
  :state)
  SENSITIVE = []
  include Aws::Structure
end