EntityResolution / Client / list_id_mapping_jobs
list_id_mapping_jobs¶
- EntityResolution.Client.list_id_mapping_jobs(**kwargs)¶
Lists all ID mapping jobs for a given workflow.
See also: AWS API Documentation
Request Syntax
response = client.list_id_mapping_jobs( workflowName='string', nextToken='string', maxResults=123 )
- Parameters:
workflowName (string) –
[REQUIRED]
The name of the workflow to be retrieved.
nextToken (string) – The pagination token from the previous API call.
maxResults (integer) – The maximum number of objects returned per page.
- Return type:
dict
- Returns:
Response Syntax
{ 'jobs': [ { 'jobId': 'string', 'status': 'RUNNING'|'SUCCEEDED'|'FAILED'|'QUEUED', 'startTime': datetime(2015, 1, 1), 'endTime': datetime(2015, 1, 1) }, ], 'nextToken': 'string' }
Response Structure
(dict) –
jobs (list) –
A list of
JobSummary
objects.(dict) –
An object containing the
JobId
,Status
,StartTime
, andEndTime
of a job.jobId (string) –
The ID of the job.
status (string) –
The current status of the job.
startTime (datetime) –
The time at which the job was started.
endTime (datetime) –
The time at which the job has finished.
nextToken (string) –
The pagination token from the previous API call.
Exceptions