Skip to content

List Batch Segment Jobs

personalize_list_batch_segment_jobs R Documentation

Gets a list of the batch segment jobs that have been performed off of a solution version that you specify

Description

Gets a list of the batch segment jobs that have been performed off of a solution version that you specify.

Usage

personalize_list_batch_segment_jobs(solutionVersionArn, nextToken,
  maxResults)

Arguments

solutionVersionArn

The Amazon Resource Name (ARN) of the solution version that the batch segment jobs used to generate batch segments.

nextToken

The token to request the next page of results.

maxResults

The maximum number of batch segment job results to return in each page. The default value is 100.

Value

A list with the following syntax:

list(
  batchSegmentJobs = list(
    list(
      batchSegmentJobArn = "string",
      jobName = "string",
      status = "string",
      creationDateTime = as.POSIXct(
        "2015-01-01"
      ),
      lastUpdatedDateTime = as.POSIXct(
        "2015-01-01"
      ),
      failureReason = "string",
      solutionVersionArn = "string"
    )
  ),
  nextToken = "string"
)

Request syntax

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