actors
Creates, updates, deletes, gets or lists an actors resource.
Overview
| Name | actors |
| Type | Resource |
| Id | aws.bedrock_agentcore.actors |
Fields
The following fields are returned by SELECT queries:
- list_actors
| Name | Datatype | Description |
|---|---|---|
actor_id | string | The unique identifier of the actor. (pattern: <code>[a-zA-Z0-9][a-zA-Z0-9-/]*(?::[a-zA-Z0-9-/]+)[a-zA-Z0-9-_/]</code>) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_actors | select | memory_id, region | Lists all actors in an AgentCore Memory resource. We recommend using pagination to ensure that the operation returns quickly and successfully. To use this operation, you must have the bedrock-agentcore:ListActors 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 identifier of the AgentCore Memory resource for which to list actors. |
region | string | AWS region (default: us-east-1) |
SELECT examples
- list_actors
Lists all actors in an AgentCore Memory resource. We recommend using pagination to ensure that the operation returns quickly and successfully. To use this operation, you must have the bedrock-agentcore:ListActors permission.
SELECT
actor_id
FROM aws.bedrock_agentcore.actors
WHERE memory_id = '{{ memory_id }}' -- required
AND region = '{{ region }}' -- required
;