Start Memory Extraction Job
| bedrockagentcore_start_memory_extraction_job | R Documentation |
Starts a memory extraction job that processes events that failed extraction previously in an AgentCore Memory resource and produces structured memory records¶
Description¶
Starts a memory extraction job that processes events that failed extraction previously in an AgentCore Memory resource and produces structured memory records. When earlier extraction attempts have left events unprocessed, this job will pick up and extract those as well.
To use this operation, you must have the
bedrock-agentcore:StartMemoryExtractionJob permission.
Usage¶
bedrockagentcore_start_memory_extraction_job(memoryId, extractionJob,
clientToken)
Arguments¶
memoryId |
[required] The unique identifier of the memory for which to start extraction jobs. |
extractionJob |
[required] Extraction job to start in this operation. |
clientToken |
A unique, case-sensitive identifier to ensure idempotent processing of the request. |
Value¶
A list with the following syntax:
list(
jobId = "string"
)
Request syntax¶
svc$start_memory_extraction_job(
memoryId = "string",
extractionJob = list(
jobId = "string"
),
clientToken = "string"
)