List Workflows
| customerprofiles_list_workflows | R Documentation |
Query to list all workflows¶
Description¶
Query to list all workflows.
Usage¶
customerprofiles_list_workflows(DomainName, WorkflowType, Status,
QueryStartDate, QueryEndDate, NextToken, MaxResults)
Arguments¶
DomainName[required] The unique name of the domain.
WorkflowTypeThe type of workflow. The only supported value is APPFLOW_INTEGRATION.
StatusStatus of workflow execution.
QueryStartDateRetrieve workflows started after timestamp.
QueryEndDateRetrieve workflows ended after timestamp.
NextTokenThe token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.
MaxResultsThe maximum number of results to return per page.
Value¶
A list with the following syntax:
list(
Items = list(
list(
WorkflowType = "APPFLOW_INTEGRATION",
WorkflowId = "string",
Status = "NOT_STARTED"|"IN_PROGRESS"|"COMPLETE"|"FAILED"|"SPLIT"|"RETRY"|"CANCELLED",
StatusDescription = "string",
CreatedAt = as.POSIXct(
"2015-01-01"
),
LastUpdatedAt = as.POSIXct(
"2015-01-01"
)
)
),
NextToken = "string"
)