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¶
Arguments¶
solutionVersionArnThe Amazon Resource Name (ARN) of the solution version that the batch segment jobs used to generate batch segments.
nextTokenThe token to request the next page of results.
maxResultsThe 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"
)