Skip to main content

deploy_action_execution_targets

Creates, updates, deletes, gets or lists a deploy_action_execution_targets resource.

Overview

Namedeploy_action_execution_targets
TypeResource
Idaws.codepipeline.deploy_action_execution_targets

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
end_timestring (date-time)The end time for the deploy action.
eventsarrayThe lifecycle events for the deploy action.
start_timestring (date-time)The start time for the deploy action.
statusstringThe status of the deploy action.
target_idstringThe ID of the target for the deploy action.
target_typestringThe type of target for the deploy action.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_deploy_action_execution_targetsselectregionLists 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.

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

SELECT examples

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
;