Sha256: 666131169cf513cb64343e3adefd0a769c7b4ad65d24641f456cf6407636f289

Contents?: true

Size: 1.26 KB

Versions: 35

Compression:

Stored size: 1.26 KB

Contents

/**
 * A structure containing information about a service or networking error.
 */
export class AWSError extends 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.
     */
    extendedRequstId: string;
    /**
     * CloudFront request ID associated with the response.
     */
    cfId: string;
}

Version data entries

35 entries across 35 versions & 1 rubygems

Version Path
sumomo-0.10.8 data/sumomo/api_modules/node_modules/aws-sdk/lib/error.d.ts
sumomo-0.10.4 data/sumomo/api_modules/node_modules/aws-sdk/lib/error.d.ts
sumomo-0.10.3 data/sumomo/api_modules/node_modules/aws-sdk/lib/error.d.ts
sumomo-0.10.2 data/sumomo/api_modules/node_modules/aws-sdk/lib/error.d.ts
sumomo-0.10.1 data/sumomo/api_modules/node_modules/aws-sdk/lib/error.d.ts
sumomo-0.10.0 data/sumomo/api_modules/node_modules/aws-sdk/lib/error.d.ts
sumomo-0.9.0 data/sumomo/api_modules/node_modules/aws-sdk/lib/error.d.ts
sumomo-0.8.22 data/sumomo/api_modules/node_modules/aws-sdk/lib/error.d.ts
sumomo-0.8.21 data/sumomo/api_modules/node_modules/aws-sdk/lib/error.d.ts
sumomo-0.8.20 data/sumomo/api_modules/node_modules/aws-sdk/lib/error.d.ts
sumomo-0.8.17 data/sumomo/api_modules/node_modules/aws-sdk/lib/error.d.ts
sumomo-0.8.16 data/sumomo/api_modules/node_modules/aws-sdk/lib/error.d.ts
sumomo-0.8.15 data/sumomo/api_modules/node_modules/aws-sdk/lib/error.d.ts
sumomo-0.8.14 data/sumomo/api_modules/node_modules/aws-sdk/lib/error.d.ts
sumomo-0.8.13 data/sumomo/api_modules/node_modules/aws-sdk/lib/error.d.ts
sumomo-0.8.12 data/sumomo/api_modules/node_modules/aws-sdk/lib/error.d.ts
sumomo-0.8.11 data/sumomo/api_modules/node_modules/aws-sdk/lib/error.d.ts
sumomo-0.8.10 data/sumomo/api_modules/node_modules/aws-sdk/lib/error.d.ts
sumomo-0.8.9 data/sumomo/api_modules/node_modules/aws-sdk/lib/error.d.ts
sumomo-0.8.8 data/sumomo/api_modules/node_modules/aws-sdk/lib/error.d.ts