Skip to main content

pending_messages

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

Overview

Namepending_messages
TypeResource
Idaws.devops_agent.pending_messages

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
agent_space_idstringUnique identifier for an agent space (allows alphanumeric characters and hyphens; 1-64 characters) (pattern: <code>[a-zA-Z0-9-]{1,64}</code>)
created_atstring (date-time)Timestamp when the pending messages were created.
execution_idstringThe unique identifier for the execution.
messagesarrayThe list of pending messages for the execution.

Methods

The following methods are available for this resource:

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

NameDatatypeDescription
agent_space_idstring
regionstringAWS region (default: us-east-1)

SELECT examples

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
;