List of usage examples for com.amazonaws.services.elasticbeanstalk.model RequestEnvironmentInfoRequest RequestEnvironmentInfoRequest
public RequestEnvironmentInfoRequest()
From source file:br.com.ingenieux.mojo.beanstalk.env.RequestEnvironmentInfoMojo.java
License:Apache License
@Override protected Object executeInternal() throws MojoExecutionException, MojoFailureException { RequestEnvironmentInfoRequest request = new RequestEnvironmentInfoRequest() .withEnvironmentId(curEnv.getEnvironmentId()).withEnvironmentName(curEnv.getEnvironmentName()) .withInfoType(infoType);/*from w w w.j a v a 2 s . co m*/ getService().requestEnvironmentInfo(request); return null; }