Skip to content

List Agent Runtime Versions

bedrockagentcorecontrol_list_agent_runtime_versions R Documentation

Lists all versions of a specific Amazon Secure Agent

Description

Lists all versions of a specific Amazon Secure Agent.

Usage

bedrockagentcorecontrol_list_agent_runtime_versions(agentRuntimeId,
  maxResults, nextToken)

Arguments

agentRuntimeId

[required] The unique identifier of the AgentCore Runtime to list versions for.

maxResults

The maximum number of results to return in the response.

nextToken

A token to retrieve the next page of results.

Value

A list with the following syntax:

list(
  agentRuntimes = list(
    list(
      agentRuntimeArn = "string",
      agentRuntimeId = "string",
      agentRuntimeVersion = "string",
      agentRuntimeName = "string",
      description = "string",
      lastUpdatedAt = as.POSIXct(
        "2015-01-01"
      ),
      status = "CREATING"|"CREATE_FAILED"|"UPDATING"|"UPDATE_FAILED"|"READY"|"DELETING"
    )
  ),
  nextToken = "string"
)

Request syntax

svc$list_agent_runtime_versions(
  agentRuntimeId = "string",
  maxResults = 123,
  nextToken = "string"
)