Skip to main content

environment_managed_action_histories

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

Overview

Nameenvironment_managed_action_histories
TypeResource
Idaws.elasticbeanstalk.environment_managed_action_histories

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
action_descriptionstringA description of the managed action.
action_idstringA unique identifier for the managed action.
action_typestringThe type of the managed action.
executed_timestringThe date and time that the action started executing.
failure_descriptionstringIf the action failed, a description of the failure.
failure_typestringIf the action failed, the type of failure.
finished_timestringThe date and time that the action finished executing.
statusstringThe status of the action.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_environment_managed_action_historyselectregionEnvironmentId, EnvironmentName, NextToken, MaxItemsLists an environment's completed and failed managed actions.

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)
EnvironmentIdstringThe environment ID of the target environment.
EnvironmentNamestringThe name of the target environment.
MaxItemsintegerThe maximum number of items to return for a single request.
NextTokenstringThe pagination token returned by a previous request.

SELECT examples

Lists an environment's completed and failed managed actions.

SELECT
action_description,
action_id,
action_type,
executed_time,
failure_description,
failure_type,
finished_time,
status
FROM aws.elasticbeanstalk.environment_managed_action_histories
WHERE region = '{{ region }}' -- required
AND EnvironmentId = '{{ EnvironmentId }}'
AND EnvironmentName = '{{ EnvironmentName }}'
AND NextToken = '{{ NextToken }}'
AND MaxItems = '{{ MaxItems }}'
;