Skip to content

List Id Mapping Jobs

entityresolution_list_id_mapping_jobs R Documentation

Lists all ID mapping jobs for a given workflow

Description

Lists all ID mapping jobs for a given workflow.

Usage

entityresolution_list_id_mapping_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_id_mapping_jobs(
  maxResults = 123,
  nextToken = "string",
  workflowName = "string"
)