Returns a list of open workflow executions in the specified domain that meet the filtering criteria
Source:R/swf_operations.R
swf_list_open_workflow_executions.RdReturns a list of open workflow executions in the specified domain that meet the filtering criteria. The results may be split into multiple pages. To retrieve subsequent pages, make the call again using the nextPageToken returned by the initial call.
See https://www.paws-r-sdk.com/docs/swf_list_open_workflow_executions/ for full documentation.
Usage
swf_list_open_workflow_executions(
domain,
startTimeFilter,
typeFilter = NULL,
tagFilter = NULL,
nextPageToken = NULL,
maximumPageSize = NULL,
reverseOrder = NULL,
executionFilter = NULL
)Arguments
- domain
[required] The name of the domain that contains the workflow executions to list.
- startTimeFilter
[required] Workflow executions are included in the returned results based on whether their start times are within the range specified by this filter.
- typeFilter
If specified, only executions of the type specified in the filter are returned.
executionFilter,typeFilterandtagFilterare mutually exclusive. You can specify at most one of these in a request.- tagFilter
If specified, only executions that have the matching tag are listed.
executionFilter,typeFilterandtagFilterare mutually exclusive. You can specify at most one of these in a request.- nextPageToken
If
NextPageTokenis returned there are more results available. The value ofNextPageTokenis a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged. Each pagination token expires after 24 hours. Using an expired pagination token will return a400error: "Specified token has exceeded its maximum lifetime".The configured
maximumPageSizedetermines how many results can be returned in a single call.- maximumPageSize
The maximum number of results that are returned per call. Use
nextPageTokento obtain further pages of results.- reverseOrder
When set to
true, returns the results in reverse order. By default the results are returned in descending order of the start time of the executions.- executionFilter
If specified, only workflow executions matching the workflow ID specified in the filter are returned.
executionFilter,typeFilterandtagFilterare mutually exclusive. You can specify at most one of these in a request.