Lists an environment's upcoming and in-progress managed actions.
elasticbeanstalk_describe_environment_managed_actions(EnvironmentName,
EnvironmentId, Status)
A list with the following syntax:
list(
ManagedActions = list(
list(
ActionId = "string",
ActionDescription = "string",
ActionType = "InstanceRefresh"|"PlatformUpdate"|"Unknown",
Status = "Scheduled"|"Pending"|"Running"|"Unknown",
WindowStartTime = as.POSIXct(
"2015-01-01"
)
)
)
)
The name of the target environment.
The environment ID of the target environment.
To show only actions with a particular status, specify a status.
svc$describe_environment_managed_actions(
EnvironmentName = "string",
EnvironmentId = "string",
Status = "Scheduled"|"Pending"|"Running"|"Unknown"
)