List Id Mapping Workflows
entityresolution_list_id_mapping_workflows | R Documentation |
Returns a list of all the IdMappingWorkflows that have been created for an Amazon Web Services account¶
Description¶
Returns a list of all the IdMappingWorkflows
that have been created
for an Amazon Web Services account.
Usage¶
entityresolution_list_id_mapping_workflows(maxResults, nextToken)
Arguments¶
maxResults |
The maximum number of objects returned per page. |
nextToken |
The pagination token from the previous API call. |
Value¶
A list with the following syntax:
list(
nextToken = "string",
workflowSummaries = list(
list(
createdAt = as.POSIXct(
"2015-01-01"
),
updatedAt = as.POSIXct(
"2015-01-01"
),
workflowArn = "string",
workflowName = "string"
)
)
)
Request syntax¶
svc$list_id_mapping_workflows(
maxResults = 123,
nextToken = "string"
)