Skip to main content

agent_runtime_versions

Creates, updates, deletes, gets or lists an agent_runtime_versions resource.

Overview

Nameagent_runtime_versions
TypeResource
Idaws.bedrock_agentcore_control.agent_runtime_versions

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
agent_runtime_arnstringThe 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_idstringThe 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_namestringThe name of the agent runtime. (pattern: <code>[a-zA-Z][a-zA-Z0-9_]{0,47}</code>)
agent_runtime_versionstringThe version of the agent runtime. (pattern: <code>([1-9][0-9]{0,4})</code>)
descriptionstringThe description of the agent runtime.
last_updated_atstring (date-time)The timestamp when the agent runtime was last updated.
statusstringThe current status of the agent runtime. (CREATING, CREATE_FAILED, UPDATING, UPDATE_FAILED, READY, DELETING)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_agent_runtime_versionsselectagent_runtime_id, regionmaxResults, nextTokenLists 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.

NameDatatypeDescription
agent_runtime_idstringThe unique identifier of the AgentCore Runtime to list versions for.
regionstringAWS region (default: us-east-1)
maxResultsintegerThe maximum number of results to return in the response.
nextTokenstringA token to retrieve the next page of results.

SELECT examples

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 }}'
;