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.
4718 4719 4720 4721 4722 4723 4724 |
# File 'lib/aws-sdk-athena/types.rb', line 4718 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.
4718 4719 4720 4721 4722 4723 4724 |
# File 'lib/aws-sdk-athena/types.rb', line 4718 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.
4718 4719 4720 4721 4722 4723 4724 |
# File 'lib/aws-sdk-athena/types.rb', line 4718 class UnprocessedQueryExecutionId < Struct.new( :query_execution_id, :error_code, :error_message) SENSITIVE = [] include Aws::Structure end |