List of usage examples for com.amazonaws.services.elasticbeanstalk.model RestartAppServerRequest RestartAppServerRequest
RestartAppServerRequest
From source file:br.com.ingenieux.mojo.beanstalk.env.RestartAppServerMojo.java
License:Apache License
@Override protected Object executeInternal() throws MojoExecutionException, MojoFailureException { RestartAppServerRequest req = new RestartAppServerRequest(); req.setEnvironmentId(curEnv.getEnvironmentId()); req.setEnvironmentName(curEnv.getEnvironmentName()); getService().restartAppServer(req);/*from w ww.j av a 2 s. c o m*/ return null; }