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(workflowName, nextToken,
maxResults)
Arguments¶
workflowName |
[required] The name of the workflow to be retrieved. |
nextToken |
The pagination token from the previous API call. |
maxResults |
The maximum number of objects returned per page. |
Value¶
A list with the following syntax:
list(
jobs = list(
list(
jobId = "string",
status = "RUNNING"|"SUCCEEDED"|"FAILED"|"QUEUED",
startTime = as.POSIXct(
"2015-01-01"
),
endTime = as.POSIXct(
"2015-01-01"
)
)
),
nextToken = "string"
)
Request syntax¶
svc$list_id_mapping_jobs(
workflowName = "string",
nextToken = "string",
maxResults = 123
)