journal_records
Creates, updates, deletes, gets or lists a journal_records resource.
Overview
| Name | journal_records |
| Type | Resource |
| Id | aws.devops_agent.journal_records |
Fields
The following fields are returned by SELECT queries:
- list_journal_records
| Name | Datatype | Description |
|---|---|---|
agent_space_id | string | The unique identifier for the agent space containing this record |
content | object | The content of this journal record |
created_at | string (date-time) | Timestamp when this journal record was created |
execution_id | string | The execution ID associated with this journal record |
record_id | string | The unique identifier for this journal record |
record_type | string | The type of this journal record |
user_reference | object | Reference to the user associated with this journal record |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_journal_records | select | agent_space_id, region | List 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.
| Name | Datatype | Description |
|---|---|---|
agent_space_id | string | The unique identifier for the agent space containing the execution |
region | string | AWS region (default: us-east-1) |
SELECT examples
- list_journal_records
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
;