Skip to main content

action_executions

Creates, updates, deletes, gets or lists an action_executions resource.

Overview

Nameaction_executions
TypeResource
Idaws.codepipeline.action_executions

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
action_execution_idstringThe action execution ID.
action_namestringThe name of the action. (pattern: <code>[A-Za-z0-9.@-_]+</code>)
inputobjectInput details for the action execution, such as role ARN, Region, and input artifacts.
last_update_timestring (date-time)The last update time of the action execution.
outputobjectOutput details for the action execution, such as the action execution result.
pipeline_execution_idstringThe pipeline execution ID for the action execution. (pattern: <code>[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}</code>)
pipeline_versionintegerThe version of the pipeline where the action was run.
stage_namestringThe name of the stage that contains the action. (pattern: <code>[A-Za-z0-9.@-_]+</code>)
start_timestring (date-time)The start time of the action execution.
statusstringThe status of the action execution. Status categories are InProgress, Succeeded, and Failed. (InProgress, Abandoned, Succeeded, Failed)
updated_bystringThe ARN of the user who changed the pipeline execution details.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_action_executionsselectregionLists the action executions that have occurred in a pipeline.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

Lists the action executions that have occurred in a pipeline.

SELECT
action_execution_id,
action_name,
input,
last_update_time,
output,
pipeline_execution_id,
pipeline_version,
stage_name,
start_time,
status,
updated_by
FROM aws.codepipeline.action_executions
WHERE region = '{{ region }}' -- required
;