Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

AsyncErrorDetails

import type { AsyncErrorDetails } from "https://aws-api.deno.dev/v0.4/services/s3control.ts?docs=full";

Error details for the failed asynchronous operation.

interface AsyncErrorDetails {
Code?: string | null;
Message?: string | null;
RequestId?: string | null;
Resource?: string | null;
}

§Properties

§
Code?: string | null
[src]

A string that uniquely identifies the error condition.

§
Message?: string | null
[src]

A generic description of the error condition in English.

§
RequestId?: string | null
[src]

The ID of the request associated with the error.

§
Resource?: string | null
[src]

The identifier of the resource associated with the error.