List Memories
| bedrockagentcorecontrol_list_memories | R Documentation |
Lists the available Amazon Bedrock AgentCore Memory resources in the current Amazon Web Services Region¶
Description¶
Lists the available Amazon Bedrock AgentCore Memory resources in the current Amazon Web Services Region.
Usage¶
bedrockagentcorecontrol_list_memories(maxResults, nextToken)
Arguments¶
maxResults |
The maximum number of results to return in a single call. The default value is 10. The maximum value is 50. |
nextToken |
The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results. |
Value¶
A list with the following syntax:
list(
memories = list(
list(
arn = "string",
id = "string",
status = "CREATING"|"ACTIVE"|"FAILED"|"DELETING",
createdAt = as.POSIXct(
"2015-01-01"
),
updatedAt = as.POSIXct(
"2015-01-01"
)
)
),
nextToken = "string"
)
Request syntax¶
svc$list_memories(
maxResults = 123,
nextToken = "string"
)