session_status
Creates, updates, deletes, gets or lists a session_status resource.
Overview
| Name | session_status |
| Type | Resource |
| Id | aws.athena.session_status |
Fields
The following fields are returned by SELECT queries:
- get_session_status
| Name | Datatype | Description |
|---|---|---|
session_id | string | The session ID. |
status | object | Contains information about the status of the session. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_session_status | select | region | Gets the current status of a session. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- get_session_status
Gets the current status of a session.
SELECT
session_id,
status
FROM aws.athena.session_status
WHERE region = '{{ region }}' -- required
;