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/error.d.ts
/**
 * A structure containing information about a service or networking error.
 */
export type AWSError = Error & {
    /**
     * A unique short code representing the error that was emitted.
     */
    code: string;
    /**
     * A longer human readable error message.
     */
    message: string;
    /**
     * Whether the error message is retryable.
     */
    retryable?: boolean;
    /**
     * In the case of a request that reached the service, this value contains the response status code.
     */
    statusCode?: number;
    /**
     * The date time object when the error occurred.
     */
    time: Date;
    /**
     * Set when a networking error occurs to easily identify the endpoint of the request.
     */
    hostname?: string;
    /**
     * Set when a networking error occurs to easily identify the region of the request.
     */
    region?: string;
    /**
     * Amount of time (in seconds) that the request waited before being resent.
     */
    retryDelay?: number;
    /**
     * The unique request ID associated with the response.
     */
    requestId?: string;
    /**
     * Second request ID associated with the response from S3.
     */
    extendedRequestId?: string;
    /**
     * CloudFront request ID associated with the response.
     */
    cfId?: string;
    /**
     * The original error which caused this Error
     */
    originalError?: Error
}