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

DeletedObject

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

Information about the deleted object.

interface DeletedObject {
DeleteMarker?: boolean | null;
DeleteMarkerVersionId?: string | null;
Key?: string | null;
VersionId?: string | null;
}

§Properties

§
DeleteMarker?: boolean | null
[src]

Specifies whether the versioned object that was permanently deleted was (true) or was not (false) a delete marker. In a simple DELETE, this header indicates whether (true) or not (false) a delete marker was created.

§
DeleteMarkerVersionId?: string | null
[src]

The version ID of the delete marker created as a result of the DELETE operation. If you delete a specific object version, the value returned by this header is the version ID of the object version deleted.

§
Key?: string | null
[src]

The name of the deleted object.

§
VersionId?: string | null
[src]

The version ID of the deleted object.