Class: Aws::Athena::Types::UnprocessedPreparedStatementName
- Inherits:
-
Struct
- Object
- Struct
- Aws::Athena::Types::UnprocessedPreparedStatementName
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-athena/types.rb
Overview
The name of a prepared statement that could not be returned.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#error_code ⇒ String
The error code returned when the request for the prepared statement failed.
-
#error_message ⇒ String
The error message containing the reason why the prepared statement could not be returned.
-
#statement_name ⇒ String
The name of a prepared statement that could not be returned due to an error.
Instance Attribute Details
#error_code ⇒ String
The error code returned when the request for the prepared statement failed.
4497 4498 4499 4500 4501 4502 4503 |
# File 'lib/aws-sdk-athena/types.rb', line 4497 class UnprocessedPreparedStatementName < Struct.new( :statement_name, :error_code, :error_message) SENSITIVE = [] include Aws::Structure end |
#error_message ⇒ String
The error message containing the reason why the prepared statement could not be returned. The following error messages are possible:
-
‘INVALID_INPUT` - The name of the prepared statement that was provided is not valid (for example, the name is too long).
-
‘STATEMENT_NOT_FOUND` - A prepared statement with the name provided could not be found.
-
‘UNAUTHORIZED` - The requester does not have permission to access the workgroup that contains the prepared statement.
4497 4498 4499 4500 4501 4502 4503 |
# File 'lib/aws-sdk-athena/types.rb', line 4497 class UnprocessedPreparedStatementName < Struct.new( :statement_name, :error_code, :error_message) SENSITIVE = [] include Aws::Structure end |
#statement_name ⇒ String
The name of a prepared statement that could not be returned due to an error.
4497 4498 4499 4500 4501 4502 4503 |
# File 'lib/aws-sdk-athena/types.rb', line 4497 class UnprocessedPreparedStatementName < Struct.new( :statement_name, :error_code, :error_message) SENSITIVE = [] include Aws::Structure end |