Skip to content

List Evaluators

bedrockagentcorecontrol_list_evaluators R Documentation

Lists all available evaluators, including both builtin evaluators provided by the service and custom evaluators created by the user

Description

Lists all available evaluators, including both builtin evaluators provided by the service and custom evaluators created by the user.

Usage

bedrockagentcorecontrol_list_evaluators(nextToken, maxResults)

Arguments

nextToken

The pagination token from a previous request to retrieve the next page of results.

maxResults

The maximum number of evaluators to return in a single response.

Value

A list with the following syntax:

list(
  evaluators = list(
    list(
      evaluatorArn = "string",
      evaluatorId = "string",
      evaluatorName = "string",
      description = "string",
      evaluatorType = "Builtin"|"Custom"|"CustomCode",
      level = "TOOL_CALL"|"TRACE"|"SESSION",
      status = "ACTIVE"|"CREATING"|"CREATE_FAILED"|"UPDATING"|"UPDATE_FAILED"|"DELETING",
      createdAt = as.POSIXct(
        "2015-01-01"
      ),
      updatedAt = as.POSIXct(
        "2015-01-01"
      ),
      lockedForModification = TRUE|FALSE,
      kmsKeyArn = "string"
    )
  ),
  nextToken = "string"
)

Request syntax

svc$list_evaluators(
  nextToken = "string",
  maxResults = 123
)