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

AsyncOperation

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

A container for the information about an asynchronous operation.

interface AsyncOperation {
CreationTime?: Date | number | null;
Operation?: AsyncOperationName | null;
RequestParameters?: AsyncRequestParameters | null;
RequestStatus?: string | null;
RequestTokenARN?: string | null;
ResponseDetails?: AsyncResponseDetails | null;
}

§Properties

§
CreationTime?: Date | number | null
[src]

The time that the request was sent to the service.

§
Operation?: AsyncOperationName | null
[src]

The specific operation for the asynchronous request.

§
RequestParameters?: AsyncRequestParameters | null
[src]

The parameters associated with the request.

§
RequestStatus?: string | null
[src]

The current status of the request.

§
RequestTokenARN?: string | null
[src]

The request token associated with the request.

§
ResponseDetails?: AsyncResponseDetails | null
[src]

The details of the response.