deploy_action_execution_targets
Creates, updates, deletes, gets or lists a deploy_action_execution_targets resource.
Overview
| Name | deploy_action_execution_targets |
| Type | Resource |
| Id | aws.codepipeline.deploy_action_execution_targets |
Fields
The following fields are returned by SELECT queries:
- list_deploy_action_execution_targets
| Name | Datatype | Description |
|---|---|---|
end_time | string (date-time) | The end time for the deploy action. |
events | array | The lifecycle events for the deploy action. |
start_time | string (date-time) | The start time for the deploy action. |
status | string | The status of the deploy action. |
target_id | string | The ID of the target for the deploy action. |
target_type | string | The type of target for the deploy action. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_deploy_action_execution_targets | select | region | Lists the targets for the deploy action. |
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_deploy_action_execution_targets
Lists the targets for the deploy action.
SELECT
end_time,
events,
start_time,
status,
target_id,
target_type
FROM aws.codepipeline.deploy_action_execution_targets
WHERE region = '{{ region }}' -- required
;