List Evaluation Jobs
| bedrock_list_evaluation_jobs | R Documentation |
Lists model evaluation jobs¶
Description¶
Lists model evaluation jobs.
Usage¶
bedrock_list_evaluation_jobs(creationTimeAfter, creationTimeBefore,
statusEquals, nameContains, maxResults, nextToken, sortBy, sortOrder)
Arguments¶
creationTimeAfterA filter that includes model evaluation jobs created after the time specified.
creationTimeBeforeA filter that includes model evaluation jobs created prior to the time specified.
statusEqualsOnly return jobs where the status condition is met.
nameContainsQuery parameter string for model evaluation job names.
maxResultsThe maximum number of results to return.
nextTokenContinuation token from the previous response, for Amazon Bedrock to list the next set of results.
sortByAllows you to sort model evaluation jobs by when they were created.
sortOrderHow you want the order of jobs sorted.
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"
)
)
)
)
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",
nameContains = "string",
maxResults = 123,
nextToken = "string",
sortBy = "CreationTime",
sortOrder = "Ascending"|"Descending"
)