environment_managed_actions
Creates, updates, deletes, gets or lists an environment_managed_actions resource.
Overview
| Name | environment_managed_actions |
| Type | Resource |
| Id | aws.elasticbeanstalk.environment_managed_actions |
Fields
The following fields are returned by SELECT queries:
- describe_environment_managed_actions
| 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 managed action. |
status | string | The status of the managed action. If the action is Scheduled, you can apply it immediately with ApplyEnvironmentManagedAction. |
window_start_time | string | The start time of the maintenance window in which the managed action will execute. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_environment_managed_actions | select | region | EnvironmentName, EnvironmentId, Status | Lists an environment's upcoming and in-progress 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. |
Status | string | To show only actions with a particular status, specify a status. |
SELECT examples
- describe_environment_managed_actions
Lists an environment's upcoming and in-progress managed actions.
SELECT
action_description,
action_id,
action_type,
status,
window_start_time
FROM aws.elasticbeanstalk.environment_managed_actions
WHERE region = '{{ region }}' -- required
AND EnvironmentName = '{{ EnvironmentName }}'
AND EnvironmentId = '{{ EnvironmentId }}'
AND Status = '{{ Status }}'
;