pending_messages
Creates, updates, deletes, gets or lists a pending_messages resource.
Overview
| Name | pending_messages |
| Type | Resource |
| Id | aws.devops_agent.pending_messages |
Fields
The following fields are returned by SELECT queries:
- list_pending_messages
| Name | Datatype | Description |
|---|---|---|
agent_space_id | string | Unique identifier for an agent space (allows alphanumeric characters and hyphens; 1-64 characters) (pattern: <code>[a-zA-Z0-9-]{1,64}</code>) |
created_at | string (date-time) | Timestamp when the pending messages were created. |
execution_id | string | The unique identifier for the execution. |
messages | array | The list of pending messages for the execution. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_pending_messages | select | agent_space_id, region | List pending messages 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 | |
region | string | AWS region (default: us-east-1) |
SELECT examples
- list_pending_messages
List pending messages for a specific execution.
SELECT
agent_space_id,
created_at,
execution_id,
messages
FROM aws.devops_agent.pending_messages
WHERE agent_space_id = '{{ agent_space_id }}' -- required
AND region = '{{ region }}' -- required
;