List Waiting Workflow Steps
imagebuilder_list_waiting_workflow_steps | R Documentation |
Get a list of workflow steps that are waiting for action for workflows in your Amazon Web Services account¶
Description¶
Get a list of workflow steps that are waiting for action for workflows in your Amazon Web Services account.
Usage¶
imagebuilder_list_waiting_workflow_steps(maxResults, nextToken)
Arguments¶
maxResults |
The maximum items to return in a request. |
nextToken |
A token to specify where to start paginating. This is the nextToken from a previously truncated response. |
Value¶
A list with the following syntax:
list(
steps = list(
list(
stepExecutionId = "string",
imageBuildVersionArn = "string",
workflowExecutionId = "string",
workflowBuildVersionArn = "string",
name = "string",
action = "string",
startTime = "string"
)
),
nextToken = "string"
)
Request syntax¶
svc$list_waiting_workflow_steps(
maxResults = 123,
nextToken = "string"
)