executions
Creates, updates, deletes, gets or lists an executions resource.
Overview
| Name | executions |
| Type | Resource |
| Id | aws.devops_agent.executions |
Fields
The following fields are returned by SELECT queries:
- list_executions
| Name | Datatype | Description |
|---|---|---|
agent_space_id | string | The unique identifier for the agent space containing this execution |
agent_sub_task | string | The specific subtask being executed by the agent |
agent_type | string | The type of agent that performed this execution. |
created_at | string (date-time) | Timestamp when this execution was created |
execution_id | string | The unique identifier for this execution |
execution_status | string | The current status of this execution (FAILED, RUNNING, STOPPED, CANCELED, TIMED_OUT) |
parent_execution_id | string | The identifier of the parent execution, if this is a child execution |
uid | string | The unique identifier for the user session associated with this execution |
updated_at | string (date-time) | Timestamp when this execution was last updated |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_executions | select | agent_space_id, region | List executions |
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 |
|---|---|---|
agent_space_id | string | The unique identifier for the agent space |
region | string | AWS region (default: us-east-1) |
SELECT examples
- list_executions
List executions
SELECT
agent_space_id,
agent_sub_task,
agent_type,
created_at,
execution_id,
execution_status,
parent_execution_id,
uid,
updated_at
FROM aws.devops_agent.executions
WHERE agent_space_id = '{{ agent_space_id }}' -- required
AND region = '{{ region }}' -- required
;