Package com.amazonaws.services.elasticbeanstalk.model

Examples of com.amazonaws.services.elasticbeanstalk.model.RequestEnvironmentInfoRequest


  private String infoType;

  @Override
  protected Object executeInternal() throws MojoExecutionException,
      MojoFailureException {
    RequestEnvironmentInfoRequest request = new RequestEnvironmentInfoRequest()
        .withEnvironmentId(curEnv.getEnvironmentId()).withEnvironmentName(curEnv.getEnvironmentName())
        .withInfoType(infoType);

    getService().requestEnvironmentInfo(request);
View Full Code Here


  private String infoType;

  @Override
  protected Object executeInternal() throws MojoExecutionException,
      MojoFailureException {
    RequestEnvironmentInfoRequest request = new RequestEnvironmentInfoRequest()
        .withEnvironmentId(environmentId).withEnvironmentName(environmentName)
        .withInfoType(infoType);

    service.requestEnvironmentInfo(request);
View Full Code Here

  private String infoType;

  @Override
  protected Object executeInternal() throws MojoExecutionException,
      MojoFailureException {
    RequestEnvironmentInfoRequest request = new RequestEnvironmentInfoRequest()
        .withEnvironmentId(environmentId).withEnvironmentName(environmentName)
        .withInfoType(infoType);

    getService().requestEnvironmentInfo(request);
View Full Code Here

  private String infoType;

  @Override
  protected Object executeInternal() throws MojoExecutionException,
      MojoFailureException {
    RequestEnvironmentInfoRequest request = new RequestEnvironmentInfoRequest()
        .withEnvironmentId(curEnv.getEnvironmentId()).withEnvironmentName(curEnv.getEnvironmentName())
        .withInfoType(infoType);

    getService().requestEnvironmentInfo(request);
View Full Code Here

TOP

Related Classes of com.amazonaws.services.elasticbeanstalk.model.RequestEnvironmentInfoRequest

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.