HEX
Server: Apache/2.4.52 (Ubuntu)
System: Linux spn-python 5.15.0-89-generic #99-Ubuntu SMP Mon Oct 30 20:42:41 UTC 2023 x86_64
User: arjun (1000)
PHP: 8.1.2-1ubuntu2.20
Disabled: NONE
Upload Files
File: //proc/1233/root/home/arjun/projects/good-life-be/node_modules/aws-sdk/lib/http_response.d.ts
import * as stream from 'stream';
interface XMLHttpRequest {}
/**
 * The low level HTTP response object, encapsulating all HTTP header and body data returned from the request.
 */
export class HttpResponse {
    /**
     * Disables buffering on the HTTP response and returns the stream for reading.
     */
    createUnbufferedStream(): stream.Readable|XMLHttpRequest
    /**
     * The response body payload.
     */
    body: string|Buffer|Uint8Array;
    /**
     * A map of response header keys and their respective values.
     */
    headers: {
        [key: string]: string;
    }
    /**
     * The HTTP status code of the response (e.g., 200, 404).
     */
    statusCode: number;
    /**
     * The HTTP status message of the response (e.g., 'Bad Request', 'Not Found')
     */
    statusMessage: string;
    /**
     * Whether this response is being streamed at a low-level.
     */
    streaming: boolean;
}