Class: Aws::Athena::Types::UnprocessedQueryExecutionId
- Inherits:
-
Struct
- Object
- Struct
- Aws::Athena::Types::UnprocessedQueryExecutionId
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-athena/types.rb
Overview
Describes a query execution that failed to process.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#error_code ⇒ String
The error code returned when the query execution failed to process, if applicable.
-
#error_message ⇒ String
The error message returned when the query execution failed to process, if applicable.
-
#query_execution_id ⇒ String
The unique identifier of the query execution.
Instance Attribute Details
#error_code ⇒ String
The error code returned when the query execution failed to process, if applicable.
4692 4693 4694 4695 4696 4697 4698 |
# File 'lib/aws-sdk-athena/types.rb', line 4692 class UnprocessedQueryExecutionId < Struct.new( :query_execution_id, :error_code, :error_message) SENSITIVE = [] include Aws::Structure end |
#error_message ⇒ String
The error message returned when the query execution failed to process, if applicable.
4692 4693 4694 4695 4696 4697 4698 |
# File 'lib/aws-sdk-athena/types.rb', line 4692 class UnprocessedQueryExecutionId < Struct.new( :query_execution_id, :error_code, :error_message) SENSITIVE = [] include Aws::Structure end |
#query_execution_id ⇒ String
The unique identifier of the query execution.
4692 4693 4694 4695 4696 4697 4698 |
# File 'lib/aws-sdk-athena/types.rb', line 4692 class UnprocessedQueryExecutionId < Struct.new( :query_execution_id, :error_code, :error_message) SENSITIVE = [] include Aws::Structure end |