Skip to main content

environment_managed_actions

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

Overview

Nameenvironment_managed_actions
TypeResource
Idaws.elasticbeanstalk.environment_managed_actions

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 managed action.
statusstringThe status of the managed action. If the action is Scheduled, you can apply it immediately with ApplyEnvironmentManagedAction.
window_start_timestringThe start time of the maintenance window in which the managed action will execute.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_environment_managed_actionsselectregionEnvironmentName, EnvironmentId, StatusLists 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.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)
EnvironmentIdstringThe environment ID of the target environment.
EnvironmentNamestringThe name of the target environment.
StatusstringTo show only actions with a particular status, specify a status.

SELECT examples

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 }}'
;