BatchCreateMemoryRecords
Creates multiple memory records in a single batch operation for the specified memory with custom content.
Request Syntax
POST /memories/memoryId
/memoryRecords/batchCreate HTTP/1.1
Content-type: application/json
{
"clientToken": "string
",
"records": [
{
"content": { ... },
"memoryStrategyId": "string
",
"namespaces": [ "string
" ],
"requestIdentifier": "string
",
"timestamp": number
}
]
}
URI Request Parameters
The request uses the following URI parameters.
- memoryId
-
The unique ID of the memory resource where records will be created.
Length Constraints: Minimum length of 12.
Pattern:
[a-zA-Z][a-zA-Z0-9-_]{0,99}-[a-zA-Z0-9]{10}
Required: Yes
Request Body
The request accepts the following data in JSON format.
- clientToken
-
A unique, case-sensitive identifier to ensure idempotent processing of the batch request.
Type: String
Required: No
- records
-
A list of memory record creation inputs to be processed in the batch operation.
Type: Array of MemoryRecordCreateInput objects
Array Members: Minimum number of 0 items. Maximum number of 100 items.
Required: Yes
Response Syntax
HTTP/1.1 200
Content-type: application/json
{
"failedRecords": [
{
"errorCode": number,
"errorMessage": "string",
"memoryRecordId": "string",
"requestIdentifier": "string",
"status": "string"
}
],
"successfulRecords": [
{
"errorCode": number,
"errorMessage": "string",
"memoryRecordId": "string",
"requestIdentifier": "string",
"status": "string"
}
]
}
Response Elements
If the action is successful, the service sends back an HTTP 200 response.
The following data is returned in JSON format by the service.
- failedRecords
-
A list of memory records that failed to be created, including error details for each failure.
Type: Array of MemoryRecordOutput objects
- successfulRecords
-
A list of memory records that were successfully created during the batch operation.
Type: Array of MemoryRecordOutput objects
Errors
For information about the errors that are common to all actions, see Common Errors.
- AccessDeniedException
-
The exception that occurs when you do not have sufficient permissions to perform an action. Verify that your IAM policy includes the necessary permissions for the operation you are trying to perform.
HTTP Status Code: 403
- ResourceNotFoundException
-
The exception that occurs when the specified resource does not exist. This can happen when using an invalid identifier or when trying to access a resource that has been deleted.
HTTP Status Code: 404
- ServiceException
-
The service encountered an internal error. Try your request again later.
HTTP Status Code: 500
- ServiceQuotaExceededException
-
The exception that occurs when the request would cause a service quota to be exceeded. Review your service quotas and either reduce your request rate or request a quota increase.
HTTP Status Code: 402
- ThrottledException
-
The request was denied due to request throttling. Reduce the frequency of requests and try again.
HTTP Status Code: 429
- ValidationException
-
The exception that occurs when the input fails to satisfy the constraints specified by the service. Check the error message for details about which input parameter is invalid and correct your request.
HTTP Status Code: 400
See Also
For more information about using this API in one of the language-specific AWS SDKs, see the following: