Skip to main content

memory_extraction_jobs

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

Overview

Namememory_extraction_jobs
TypeResource
Idaws.bedrock_agentcore.memory_extraction_jobs

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
actor_idstringThe identifier of the actor for this extraction job.
failure_reasonstringThe cause of failure, if the job did not complete successfully.
job_idstringThe unique identifier for the extraction job.
messagesobjectThe messages associated with the extraction job.
session_idstringThe identifier of the session for this extraction job.
statusstringThe current status of the extraction job. (FAILED)
strategy_idstringThe identifier of the memory strategy for this extraction job.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_memory_extraction_jobsselectmemory_id, regionLists 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.

NameDatatypeDescription
memory_idstringThe unique identifier of the memory to list extraction jobs for.
regionstringAWS region (default: us-east-1)

SELECT examples

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
;