List Batch Inference Jobs
| personalize_list_batch_inference_jobs | R Documentation |
Gets a list of the batch inference jobs that have been performed off of a solution version¶
Description¶
Gets a list of the batch inference jobs that have been performed off of a solution version.
Usage¶
Arguments¶
solutionVersionArnThe Amazon Resource Name (ARN) of the solution version from which the batch inference jobs were created.
nextTokenThe token to request the next page of results.
maxResultsThe maximum number of batch inference job results to return in each page. The default value is 100.
Value¶
A list with the following syntax:
list(
batchInferenceJobs = list(
list(
batchInferenceJobArn = "string",
jobName = "string",
status = "string",
creationDateTime = as.POSIXct(
"2015-01-01"
),
lastUpdatedDateTime = as.POSIXct(
"2015-01-01"
),
failureReason = "string",
solutionVersionArn = "string",
batchInferenceJobMode = "BATCH_INFERENCE"|"THEME_GENERATION"
)
),
nextToken = "string"
)