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¶
Arguments¶
pipelineName[required] The name of the pipeline for which you want to list action execution history.
filterInput information used to filter action execution history.
maxResultsThe 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.
nextTokenThe token that was returned from the previous
list_action_executionscall, 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"
)