Example usage for com.amazonaws.services.elasticbeanstalk.model EventDescription getSeverity

List of usage examples for com.amazonaws.services.elasticbeanstalk.model EventDescription getSeverity

Introduction

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

Prototype


public String getSeverity() 

Source Link

Document

The severity level of this event.

Usage

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

License:Apache License

@NotNull
private Listener.ErrorInfo getErrorInfo(@NotNull EventDescription event) {
    final Listener.ErrorInfo errorInfo = new Listener.ErrorInfo();
    errorInfo.message = removeTrailingDot(event.getMessage());
    errorInfo.severity = event.getSeverity();
    return errorInfo;
}