EntityResolution / Client / list_id_mapping_workflows

list_id_mapping_workflows#

EntityResolution.Client.list_id_mapping_workflows(**kwargs)#

Returns a list of all the IdMappingWorkflows that have been created for an Amazon Web Services account.

See also: AWS API Documentation

Request Syntax

response = client.list_id_mapping_workflows(
    maxResults=123,
    nextToken='string'
)
Parameters:
  • maxResults (integer) – The maximum number of objects returned per page.

  • nextToken (string) – The pagination token from the previous API call.

Return type:

dict

Returns:

Response Syntax

{
    'nextToken': 'string',
    'workflowSummaries': [
        {
            'createdAt': datetime(2015, 1, 1),
            'updatedAt': datetime(2015, 1, 1),
            'workflowArn': 'string',
            'workflowName': 'string'
        },
    ]
}

Response Structure

  • (dict) –

    • nextToken (string) –

      The pagination token from the previous API call.

    • workflowSummaries (list) –

      A list of IdMappingWorkflowSummary objects.

      • (dict) –

        A list of IdMappingWorkflowSummary objects, each of which contain the fields WorkflowName, WorkflowArn, CreatedAt, and UpdatedAt.

        • createdAt (datetime) –

          The timestamp of when the workflow was created.

        • updatedAt (datetime) –

          The timestamp of when the workflow was last updated.

        • workflowArn (string) –

          The ARN (Amazon Resource Name) that Entity Resolution generated for the IdMappingWorkflow.

        • workflowName (string) –

          The name of the workflow.

Exceptions