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

RestoreRequest

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

Container for restore job parameters.

interface RestoreRequest {
Days?: number | null;
Description?: string | null;
GlacierJobParameters?: GlacierJobParameters | null;
OutputLocation?: OutputLocation | null;
SelectParameters?: SelectParameters | null;
Tier?: Tier | null;
Type?: RestoreRequestType | null;
}

§Properties

§
Days?: number | null
[src]

Lifetime of the active copy in days. Do not use with restores that specify OutputLocation.

The Days element is required for regular restores, and must not be provided for select requests.

§
Description?: string | null
[src]

The optional description for the job.

§
GlacierJobParameters?: GlacierJobParameters | null
[src]

S3 Glacier related parameters pertaining to this job. Do not use with restores that specify OutputLocation.

§
OutputLocation?: OutputLocation | null
[src]

Describes the location where the restore job's output is stored.

§
SelectParameters?: SelectParameters | null
[src]

Describes the parameters for Select job types.

§
Tier?: Tier | null
[src]

Retrieval tier at which the restore will be processed.

§

Type of restore request.