Skip to main content

journal_records

Creates, updates, deletes, gets or lists a journal_records resource.

Overview

Namejournal_records
TypeResource
Idaws.devops_agent.journal_records

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
agent_space_idstringThe unique identifier for the agent space containing this record
contentobjectThe content of this journal record
created_atstring (date-time)Timestamp when this journal record was created
execution_idstringThe execution ID associated with this journal record
record_idstringThe unique identifier for this journal record
record_typestringThe type of this journal record
user_referenceobjectReference to the user associated with this journal record

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_journal_recordsselectagent_space_id, regionList journal records for a specific execution

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 containing the execution
regionstringAWS region (default: us-east-1)

SELECT examples

List journal records for a specific execution

SELECT
agent_space_id,
content,
created_at,
execution_id,
record_id,
record_type,
user_reference
FROM aws.devops_agent.journal_records
WHERE agent_space_id = '{{ agent_space_id }}' -- required
AND region = '{{ region }}' -- required
;