Skip to content

List Evaluation Jobs

bedrock_list_evaluation_jobs R Documentation

Lists all existing evaluation jobs

Description

Lists all existing evaluation jobs.

Usage

bedrock_list_evaluation_jobs(creationTimeAfter, creationTimeBefore,
  statusEquals, applicationTypeEquals, nameContains, maxResults,
  nextToken, sortBy, sortOrder)

Arguments

creationTimeAfter

A filter to only list evaluation jobs created after a specified time.

creationTimeBefore

A filter to only list evaluation jobs created before a specified time.

statusEquals

A filter to only list evaluation jobs that are of a certain status.

applicationTypeEquals

A filter to only list evaluation jobs that are either model evaluations or knowledge base evaluations.

nameContains

A filter to only list evaluation jobs that contain a specified string in the job name.

maxResults

The maximum number of results to return.

nextToken

Continuation token from the previous response, for Amazon Bedrock to list the next set of results.

sortBy

Specifies a creation time to sort the list of evaluation jobs by when they were created.

sortOrder

Specifies whether to sort the list of evaluation jobs by either ascending or descending order.

Value

A list with the following syntax:

list(
  nextToken = "string",
  jobSummaries = list(
    list(
      jobArn = "string",
      jobName = "string",
      status = "InProgress"|"Completed"|"Failed"|"Stopping"|"Stopped"|"Deleting",
      creationTime = as.POSIXct(
        "2015-01-01"
      ),
      jobType = "Human"|"Automated",
      evaluationTaskTypes = list(
        "Summarization"|"Classification"|"QuestionAndAnswer"|"Generation"|"Custom"
      ),
      modelIdentifiers = list(
        "string"
      ),
      ragIdentifiers = list(
        "string"
      ),
      evaluatorModelIdentifiers = list(
        "string"
      ),
      applicationType = "ModelEvaluation"|"RagEvaluation"
    )
  )
)

Request syntax

svc$list_evaluation_jobs(
  creationTimeAfter = as.POSIXct(
    "2015-01-01"
  ),
  creationTimeBefore = as.POSIXct(
    "2015-01-01"
  ),
  statusEquals = "InProgress"|"Completed"|"Failed"|"Stopping"|"Stopped"|"Deleting",
  applicationTypeEquals = "ModelEvaluation"|"RagEvaluation",
  nameContains = "string",
  maxResults = 123,
  nextToken = "string",
  sortBy = "CreationTime",
  sortOrder = "Ascending"|"Descending"
)