Skip to content

List Agent Runtimes

bedrockagentcorecontrol_list_agent_runtimes R Documentation

Lists all Amazon Secure Agents in your account

Description

Lists all Amazon Secure Agents in your account.

Usage

bedrockagentcorecontrol_list_agent_runtimes(maxResults, nextToken)

Arguments

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_runtimes(
  maxResults = 123,
  nextToken = "string"
)