Class HttpExecuteResponse

java.lang.Object
software.amazon.awssdk.http.HttpExecuteResponse

public class HttpExecuteResponse extends Object
  • Method Details

    • httpResponse

      public SdkHttpResponse httpResponse()
      Returns:
      The HTTP response.
    • responseBody

      public Optional<AbortableInputStream> responseBody()
      Get the AbortableInputStream associated with this response.

      Always close the "responseBody" input stream to release the underlying HTTP connection. Even for error responses, the SDK creates an input stream for reading error data. It is essential to close the input stream in the "responseBody" attribute for both success and error cases.

      Returns:
      An Optional containing the AbortableInputStream if available.
    • builder

      public static HttpExecuteResponse.Builder builder()