Describe Environment Managed Actions
| elasticbeanstalk_describe_environment_managed_actions | R Documentation | 
Lists an environment's upcoming and in-progress managed actions¶
Description¶
Lists an environment's upcoming and in-progress managed actions.
Usage¶
elasticbeanstalk_describe_environment_managed_actions(EnvironmentName,
  EnvironmentId, Status)
Arguments¶
| EnvironmentName | The name of the target environment. | 
| EnvironmentId | The environment ID of the target environment. | 
| Status | To show only actions with a particular status, specify a status. | 
Value¶
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"
      )
    )
  )
)
Request syntax¶
svc$describe_environment_managed_actions(
  EnvironmentName = "string",
  EnvironmentId = "string",
  Status = "Scheduled"|"Pending"|"Running"|"Unknown"
)