Apply Environment Managed Action
elasticbeanstalk_apply_environment_managed_action | R Documentation |
Applies a scheduled managed action immediately¶
Description¶
Applies a scheduled managed action immediately. A managed action can be
applied only if its status is Scheduled
. Get the status and action ID
of a managed action with describe_environment_managed_actions
.
Usage¶
elasticbeanstalk_apply_environment_managed_action(EnvironmentName,
EnvironmentId, ActionId)
Arguments¶
EnvironmentName |
The name of the target environment. |
EnvironmentId |
The environment ID of the target environment. |
ActionId |
[required] The action ID of the scheduled managed action to execute. |
Value¶
A list with the following syntax:
list(
ActionId = "string",
ActionDescription = "string",
ActionType = "InstanceRefresh"|"PlatformUpdate"|"Unknown",
Status = "string"
)
Request syntax¶
svc$apply_environment_managed_action(
EnvironmentName = "string",
EnvironmentId = "string",
ActionId = "string"
)