memory_extraction_jobs
Creates, updates, deletes, gets or lists a memory_extraction_jobs resource.
Overview
| Name | memory_extraction_jobs |
| Type | Resource |
| Id | aws.bedrock_agentcore.memory_extraction_jobs |
Fields
The following fields are returned by SELECT queries:
- list_memory_extraction_jobs
| Name | Datatype | Description |
|---|---|---|
actor_id | string | The identifier of the actor for this extraction job. |
failure_reason | string | The cause of failure, if the job did not complete successfully. |
job_id | string | The unique identifier for the extraction job. |
messages | object | The messages associated with the extraction job. |
session_id | string | The identifier of the session for this extraction job. |
status | string | The current status of the extraction job. (FAILED) |
strategy_id | string | The identifier of the memory strategy for this extraction job. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_memory_extraction_jobs | select | memory_id, region | Lists all long-term memory extraction jobs that are eligible to be started with optional filtering. To use this operation, you must have the bedrock-agentcore:ListMemoryExtractionJobs permission. |
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 |
|---|---|---|
memory_id | string | The unique identifier of the memory to list extraction jobs for. |
region | string | AWS region (default: us-east-1) |
SELECT examples
- list_memory_extraction_jobs
Lists all long-term memory extraction jobs that are eligible to be started with optional filtering. To use this operation, you must have the bedrock-agentcore:ListMemoryExtractionJobs permission.
SELECT
actor_id,
failure_reason,
job_id,
messages,
session_id,
status,
strategy_id
FROM aws.bedrock_agentcore.memory_extraction_jobs
WHERE memory_id = '{{ memory_id }}' -- required
AND region = '{{ region }}' -- required
;