Skip to content

List Matching Jobs

entityresolution_list_matching_jobs R Documentation

Lists all jobs for a given workflow

Description

Lists all jobs for a given workflow.

Usage

entityresolution_list_matching_jobs(maxResults, nextToken, workflowName)

Arguments

maxResults

The maximum number of objects returned per page.

nextToken

The pagination token from the previous API call.

workflowName

[required] The name of the workflow to be retrieved.

Value

A list with the following syntax:

list(
  jobs = list(
    list(
      endTime = as.POSIXct(
        "2015-01-01"
      ),
      jobId = "string",
      startTime = as.POSIXct(
        "2015-01-01"
      ),
      status = "RUNNING"|"SUCCEEDED"|"FAILED"|"QUEUED"
    )
  ),
  nextToken = "string"
)

Request syntax

svc$list_matching_jobs(
  maxResults = 123,
  nextToken = "string",
  workflowName = "string"
)