Skip to content

Bedrock  >  Operations  >  list_evaluation_jobs

list_evaluation_jobs

Operation

list_evaluation_jobs async

list_evaluation_jobs(input: ListEvaluationJobsInput, plugins: list[Plugin] | None = None) -> ListEvaluationJobsOutput

Lists all existing evaluation jobs.

Parameters:

Name Type Description Default
input ListEvaluationJobsInput

An instance of ListEvaluationJobsInput.

required
plugins list[Plugin] | None

A list of callables that modify the configuration dynamically. Changes made by these plugins only apply for the duration of the operation execution and will not affect any other operation invocations.

None

Returns:

Type Description
ListEvaluationJobsOutput

An instance of ListEvaluationJobsOutput.

Input

ListEvaluationJobsInput dataclass

Dataclass for ListEvaluationJobsInput structure.

Attributes

application_type_equals class-attribute instance-attribute
application_type_equals: ApplicationType | None = None

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

creation_time_after class-attribute instance-attribute
creation_time_after: datetime | None = None

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

creation_time_before class-attribute instance-attribute
creation_time_before: datetime | None = None

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

max_results class-attribute instance-attribute
max_results: int | None = None

The maximum number of results to return.

name_contains class-attribute instance-attribute
name_contains: str | None = None

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

next_token class-attribute instance-attribute
next_token: str | None = None

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

sort_by class-attribute instance-attribute
sort_by: SortJobsBy | None = None

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

sort_order class-attribute instance-attribute
sort_order: SortOrder | None = None

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

status_equals class-attribute instance-attribute
status_equals: EvaluationJobStatus | None = None

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

Output

ListEvaluationJobsOutput dataclass

Dataclass for ListEvaluationJobsOutput structure.

Attributes

job_summaries class-attribute instance-attribute
job_summaries: list[EvaluationSummary] | None = None

A list of summaries of the evaluation jobs.

next_token class-attribute instance-attribute
next_token: str | None = None

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