agent_runtime_versions
Creates, updates, deletes, gets or lists an agent_runtime_versions resource.
Overview
| Name | agent_runtime_versions |
| Type | Resource |
| Id | aws.bedrock_agentcore_control.agent_runtime_versions |
Fields
The following fields are returned by SELECT queries:
- list_agent_runtime_versions
| Name | Datatype | Description |
|---|---|---|
agent_runtime_arn | string | The Amazon Resource Name (ARN) of the agent runtime. (pattern: <code>arn:aws(-[^:]+)?:bedrock-agentcore:[a-z0-9-]+:[0-9]{12}:runtime/[a-zA-Z][a-zA-Z0-9_]{0,47}-[a-zA-Z0-9]{10}</code>) |
agent_runtime_id | string | The unique identifier of the agent runtime. (pattern: <code>[a-zA-Z][a-zA-Z0-9_]{0,99}-[a-zA-Z0-9]{10}</code>) |
agent_runtime_name | string | The name of the agent runtime. (pattern: <code>[a-zA-Z][a-zA-Z0-9_]{0,47}</code>) |
agent_runtime_version | string | The version of the agent runtime. (pattern: <code>([1-9][0-9]{0,4})</code>) |
description | string | The description of the agent runtime. |
last_updated_at | string (date-time) | The timestamp when the agent runtime was last updated. |
status | string | The current status of the agent runtime. (CREATING, CREATE_FAILED, UPDATING, UPDATE_FAILED, READY, DELETING) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_agent_runtime_versions | select | agent_runtime_id, region | maxResults, nextToken | Lists all versions of a specific Amazon Secure Agent. |
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 |
|---|---|---|
agent_runtime_id | string | The unique identifier of the AgentCore Runtime to list versions for. |
region | string | AWS region (default: us-east-1) |
maxResults | integer | The maximum number of results to return in the response. |
nextToken | string | A token to retrieve the next page of results. |
SELECT examples
- list_agent_runtime_versions
Lists all versions of a specific Amazon Secure Agent.
SELECT
agent_runtime_arn,
agent_runtime_id,
agent_runtime_name,
agent_runtime_version,
description,
last_updated_at,
status
FROM aws.bedrock_agentcore_control.agent_runtime_versions
WHERE agent_runtime_id = '{{ agent_runtime_id }}' -- required
AND region = '{{ region }}' -- required
AND maxResults = '{{ maxResults }}'
AND nextToken = '{{ nextToken }}'
;