environment_managed_action_histories
Creates, updates, deletes, gets or lists an environment_managed_action_histories resource.
Overview
| Name | environment_managed_action_histories |
| Type | Resource |
| Id | aws.elasticbeanstalk.environment_managed_action_histories |
Fields
The following fields are returned by SELECT queries:
- describe_environment_managed_action_history
| Name | Datatype | Description |
|---|---|---|
action_description | string | A description of the managed action. |
action_id | string | A unique identifier for the managed action. |
action_type | string | The type of the managed action. |
executed_time | string | The date and time that the action started executing. |
failure_description | string | If the action failed, a description of the failure. |
failure_type | string | If the action failed, the type of failure. |
finished_time | string | The date and time that the action finished executing. |
status | string | The status of the action. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_environment_managed_action_history | select | region | EnvironmentId, EnvironmentName, NextToken, MaxItems | Lists 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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
EnvironmentId | string | The environment ID of the target environment. |
EnvironmentName | string | The name of the target environment. |
MaxItems | integer | The maximum number of items to return for a single request. |
NextToken | string | The pagination token returned by a previous request. |
SELECT examples
- describe_environment_managed_action_history
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 }}'
;