Skip to content

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

personalize_list_batch_inference_jobs(solutionVersionArn, nextToken,
  maxResults)

Arguments

solutionVersionArn

The Amazon Resource Name (ARN) of the solution version from which the batch inference jobs were created.

nextToken

The token to request the next page of results.

maxResults

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

Request syntax

svc$list_batch_inference_jobs(
  solutionVersionArn = "string",
  nextToken = "string",
  maxResults = 123
)