Lists an environment's completed and failed managed actions.
elasticbeanstalk_describe_environment_managed_action_history(
EnvironmentId, EnvironmentName, NextToken, MaxItems)
A list with the following syntax:
list(
ManagedActionHistoryItems = list(
list(
ActionId = "string",
ActionType = "InstanceRefresh"|"PlatformUpdate"|"Unknown",
ActionDescription = "string",
FailureType = "UpdateCancelled"|"CancellationFailed"|"RollbackFailed"|"RollbackSuccessful"|"InternalFailure"|"InvalidEnvironmentState"|"PermissionsError",
Status = "Completed"|"Failed"|"Unknown",
FailureDescription = "string",
ExecutedTime = as.POSIXct(
"2015-01-01"
),
FinishedTime = as.POSIXct(
"2015-01-01"
)
)
),
NextToken = "string"
)
The environment ID of the target environment.
The name of the target environment.
The pagination token returned by a previous request.
The maximum number of items to return for a single request.
svc$describe_environment_managed_action_history(
EnvironmentId = "string",
EnvironmentName = "string",
NextToken = "string",
MaxItems = 123
)