Abort Environment Update
elasticbeanstalk_abort_environment_update | R Documentation |
Cancels in-progress environment configuration update or application version deployment¶
Description¶
Cancels in-progress environment configuration update or application version deployment.
Usage¶
elasticbeanstalk_abort_environment_update(EnvironmentId,
EnvironmentName)
Arguments¶
EnvironmentId |
This specifies the ID of the environment with the in-progress update that you want to cancel. |
EnvironmentName |
This specifies the name of the environment with the in-progress update that you want to cancel. |
Value¶
An empty list.
Request syntax¶
svc$abort_environment_update(
EnvironmentId = "string",
EnvironmentName = "string"
)
Examples¶
## Not run:
# The following code aborts a running application version deployment for
# an environment named my-env:
svc$abort_environment_update(
EnvironmentName = "my-env"
)
## End(Not run)