Example usage for com.amazonaws.services.elasticbeanstalk.model RequestEnvironmentInfoRequest RequestEnvironmentInfoRequest

List of usage examples for com.amazonaws.services.elasticbeanstalk.model RequestEnvironmentInfoRequest RequestEnvironmentInfoRequest

Introduction

In this page you can find the example usage for com.amazonaws.services.elasticbeanstalk.model RequestEnvironmentInfoRequest RequestEnvironmentInfoRequest.

Prototype

public RequestEnvironmentInfoRequest() 

Source Link

Document

Default constructor for RequestEnvironmentInfoRequest object.

Usage

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;
}