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

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

Introduction

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

Prototype

AbortEnvironmentUpdateRequest

Source Link

Usage

From source file:br.com.ingenieux.mojo.beanstalk.env.AbortEnvironmentUpdateMojo.java

License:Apache License

@Override
protected Object executeInternal() throws MojoExecutionException, MojoFailureException {
    AbortEnvironmentUpdateRequest req = new AbortEnvironmentUpdateRequest();

    req.setEnvironmentId(curEnv.getEnvironmentId());
    req.setEnvironmentName(curEnv.getEnvironmentName());

    super.configure();

    return curEnv;
}