HEX
Server: Apache/2.4.52 (Ubuntu)
System: Linux ip-10-0-8-47 6.8.0-1021-aws #23~22.04.1-Ubuntu SMP Tue Dec 10 16:31:58 UTC 2024 aarch64
User: ubuntu (1000)
PHP: 8.1.2-1ubuntu2.22
Disabled: NONE
Upload Files
File: /var/www/api.javaapp.co.uk_old/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
}