List Matching Workflows
entityresolution_list_matching_workflows | R Documentation |
Returns a list of all the MatchingWorkflows that have been created for an Amazon Web Services account¶
Description¶
Returns a list of all the MatchingWorkflows
that have been created for
an Amazon Web Services account.
Usage¶
entityresolution_list_matching_workflows(nextToken, maxResults)
Arguments¶
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(
workflowSummaries = list(
list(
workflowName = "string",
workflowArn = "string",
createdAt = as.POSIXct(
"2015-01-01"
),
updatedAt = as.POSIXct(
"2015-01-01"
),
resolutionType = "RULE_MATCHING"|"ML_MATCHING"|"PROVIDER"
)
),
nextToken = "string"
)
Request syntax¶
svc$list_matching_workflows(
nextToken = "string",
maxResults = 123
)