Describe Environment Managed Action History
elasticbeanstalk_describe_environment_managed_action_history | R Documentation |
Lists an environment's completed and failed managed actions¶
Description¶
Lists an environment's completed and failed managed actions.
Usage¶
elasticbeanstalk_describe_environment_managed_action_history(
EnvironmentId, EnvironmentName, NextToken, MaxItems)
Arguments¶
EnvironmentId
The environment ID of the target environment.
EnvironmentName
The name of the target environment.
NextToken
The pagination token returned by a previous request.
MaxItems
The maximum number of items to return for a single request.
Value¶
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"
)