Example usage for com.amazonaws.services.elasticbeanstalk.model EventSeverity ERROR

List of usage examples for com.amazonaws.services.elasticbeanstalk.model EventSeverity ERROR

Introduction

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

Prototype

EventSeverity ERROR

To view the source code for com.amazonaws.services.elasticbeanstalk.model EventSeverity ERROR.

Click Source Link

Usage

From source file:jetbrains.buildServer.runner.elasticbeanstalk.AWSClient.java

License:Apache License

private List<EventDescription> getErrorEvents(@NotNull String environmentId, String versionLabel) {
    return myElasticBeanstalkClient.describeEvents(new DescribeEventsRequest().withEnvironmentId(environmentId)
            .withMaxRecords(10).withVersionLabel(versionLabel).withSeverity(EventSeverity.ERROR)).getEvents();
}