Skip to content

List Action Executions

codepipeline_list_action_executions R Documentation

Lists the action executions that have occurred in a pipeline

Description

Lists the action executions that have occurred in a pipeline.

Usage

codepipeline_list_action_executions(pipelineName, filter, maxResults,
  nextToken)

Arguments

pipelineName

[required] The name of the pipeline for which you want to list action execution history.

filter

Input information used to filter action execution history.

maxResults

The maximum number of results to return in a single call. To retrieve the remaining results, make another call with the returned nextToken value. Action execution history is retained for up to 12 months, based on action execution start times. Default value is 100.

nextToken

The token that was returned from the previous list_action_executions call, which can be used to return the next set of action executions in the list.

Value

A list with the following syntax:

list(
  actionExecutionDetails = list(
    list(
      pipelineExecutionId = "string",
      actionExecutionId = "string",
      pipelineVersion = 123,
      stageName = "string",
      actionName = "string",
      startTime = as.POSIXct(
        "2015-01-01"
      ),
      lastUpdateTime = as.POSIXct(
        "2015-01-01"
      ),
      updatedBy = "string",
      status = "InProgress"|"Abandoned"|"Succeeded"|"Failed",
      input = list(
        actionTypeId = list(
          category = "Source"|"Build"|"Deploy"|"Test"|"Invoke"|"Approval",
          owner = "AWS"|"ThirdParty"|"Custom",
          provider = "string",
          version = "string"
        ),
        configuration = list(
          "string"
        ),
        resolvedConfiguration = list(
          "string"
        ),
        roleArn = "string",
        region = "string",
        inputArtifacts = list(
          list(
            name = "string",
            s3location = list(
              bucket = "string",
              key = "string"
            )
          )
        ),
        namespace = "string"
      ),
      output = list(
        outputArtifacts = list(
          list(
            name = "string",
            s3location = list(
              bucket = "string",
              key = "string"
            )
          )
        ),
        executionResult = list(
          externalExecutionId = "string",
          externalExecutionSummary = "string",
          externalExecutionUrl = "string",
          errorDetails = list(
            code = "string",
            message = "string"
          )
        ),
        outputVariables = list(
          "string"
        )
      )
    )
  ),
  nextToken = "string"
)

Request syntax

svc$list_action_executions(
  pipelineName = "string",
  filter = list(
    pipelineExecutionId = "string",
    latestInPipelineExecution = list(
      pipelineExecutionId = "string",
      startTimeRange = "Latest"|"All"
    )
  ),
  maxResults = 123,
  nextToken = "string"
)