Skip to content

Batch Delete Evaluation Job

bedrock_batch_delete_evaluation_job R Documentation

Deletes a batch of evaluation jobs

Description

Deletes a batch of evaluation jobs. An evaluation job can only be deleted if it has following status FAILED, COMPLETED, and STOPPED. You can request up to 25 model evaluation jobs be deleted in a single request.

Usage

bedrock_batch_delete_evaluation_job(jobIdentifiers)

Arguments

jobIdentifiers

[required] A list of one or more evaluation job Amazon Resource Names (ARNs) you want to delete.

Value

A list with the following syntax:

list(
  errors = list(
    list(
      jobIdentifier = "string",
      code = "string",
      message = "string"
    )
  ),
  evaluationJobs = list(
    list(
      jobIdentifier = "string",
      jobStatus = "InProgress"|"Completed"|"Failed"|"Stopping"|"Stopped"|"Deleting"
    )
  )
)

Request syntax

svc$batch_delete_evaluation_job(
  jobIdentifiers = list(
    "string"
  )
)