Skip to main content

executions

Creates, updates, deletes, gets or lists an executions resource.

Overview

Nameexecutions
TypeResource
Idaws.devops_agent.executions

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
agent_space_idstringThe unique identifier for the agent space containing this execution
agent_sub_taskstringThe specific subtask being executed by the agent
agent_typestringThe type of agent that performed this execution.
created_atstring (date-time)Timestamp when this execution was created
execution_idstringThe unique identifier for this execution
execution_statusstringThe current status of this execution (FAILED, RUNNING, STOPPED, CANCELED, TIMED_OUT)
parent_execution_idstringThe identifier of the parent execution, if this is a child execution
uidstringThe unique identifier for the user session associated with this execution
updated_atstring (date-time)Timestamp when this execution was last updated

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_executionsselectagent_space_id, regionList 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.

NameDatatypeDescription
agent_space_idstringThe unique identifier for the agent space
regionstringAWS region (default: us-east-1)

SELECT examples

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
;