Skip to content

Batch Delete Evaluation Job

bedrock_batch_delete_evaluation_job R Documentation

Creates a batch deletion job

Description

Creates a batch deletion job. A model 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] An array of model evaluation job ARNs to be deleted.

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"
  )
)