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.
4523 4524 4525 4526 4527 4528 4529 |
# File 'lib/aws-sdk-athena/types.rb', line 4523 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.
4523 4524 4525 4526 4527 4528 4529 |
# File 'lib/aws-sdk-athena/types.rb', line 4523 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.
4523 4524 4525 4526 4527 4528 4529 |
# File 'lib/aws-sdk-athena/types.rb', line 4523 class UnprocessedQueryExecutionId < Struct.new( :query_execution_id, :error_code, :error_message) SENSITIVE = [] include Aws::Structure end |