Skip to content

List Workflow Step Executions

imagebuilder_list_workflow_step_executions R Documentation

Returns runtime data for each step in a runtime instance of the workflow that you specify in the request

Description

Returns runtime data for each step in a runtime instance of the workflow that you specify in the request.

Usage

imagebuilder_list_workflow_step_executions(maxResults, nextToken,
  workflowExecutionId)

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.

workflowExecutionId

[required] The unique identifier that Image Builder assigned to keep track of runtime details when it ran the workflow.

Value

A list with the following syntax:

list(
  requestId = "string",
  steps = list(
    list(
      stepExecutionId = "string",
      name = "string",
      description = "string",
      action = "string",
      status = "PENDING"|"SKIPPED"|"RUNNING"|"COMPLETED"|"FAILED"|"CANCELLED",
      rollbackStatus = "RUNNING"|"COMPLETED"|"SKIPPED"|"FAILED",
      message = "string",
      inputs = "string",
      outputs = "string",
      startTime = "string",
      endTime = "string"
    )
  ),
  workflowBuildVersionArn = "string",
  workflowExecutionId = "string",
  imageBuildVersionArn = "string",
  message = "string",
  nextToken = "string"
)

Request syntax

svc$list_workflow_step_executions(
  maxResults = 123,
  nextToken = "string",
  workflowExecutionId = "string"
)