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¶
creationTimeAfter
A filter that includes model evaluation jobs created after the time specified.
creationTimeBefore
A filter that includes model evaluation jobs created prior to the time specified.
statusEquals
Only return jobs where the status condition is met.
nameContains
Query parameter string for model evaluation job names.
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
Allows you to sort model evaluation jobs by when they were created.
sortOrder
How 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"
)