action_executions
Creates, updates, deletes, gets or lists an action_executions resource.
Overview
| Name | action_executions |
| Type | Resource |
| Id | aws.codepipeline.action_executions |
Fields
The following fields are returned by SELECT queries:
- list_action_executions
| Name | Datatype | Description |
|---|---|---|
action_execution_id | string | The action execution ID. |
action_name | string | The name of the action. (pattern: <code>[A-Za-z0-9.@-_]+</code>) |
input | object | Input details for the action execution, such as role ARN, Region, and input artifacts. |
last_update_time | string (date-time) | The last update time of the action execution. |
output | object | Output details for the action execution, such as the action execution result. |
pipeline_execution_id | string | The 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_version | integer | The version of the pipeline where the action was run. |
stage_name | string | The name of the stage that contains the action. (pattern: <code>[A-Za-z0-9.@-_]+</code>) |
start_time | string (date-time) | The start time of the action execution. |
status | string | The status of the action execution. Status categories are InProgress, Succeeded, and Failed. (InProgress, Abandoned, Succeeded, Failed) |
updated_by | string | The ARN of the user who changed the pipeline execution details. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_action_executions | select | region | Lists 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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- list_action_executions
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
;