Example usage for com.amazonaws Response getHttpResponse

List of usage examples for com.amazonaws Response getHttpResponse

Introduction

In this page you can find the example usage for com.amazonaws Response getHttpResponse.

Prototype

public HttpResponse getHttpResponse() 

Source Link

Usage

From source file:io.opentracing.contrib.aws.SpanDecorator.java

License:Apache License

static void onResponse(Response response, Span span) {
    Tags.HTTP_STATUS.set(span, response.getHttpResponse().getStatusCode());
}