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

GlacierJobDescription

import type { GlacierJobDescription } from "https://aws-api.deno.dev/v0.3/services/glacier.ts?docs=full";

Contains the description of an Amazon S3 Glacier job.

interface GlacierJobDescription {
Action?: ActionCode | null;
ArchiveId?: string | null;
ArchiveSHA256TreeHash?: string | null;
ArchiveSizeInBytes?: number | null;
Completed?: boolean | null;
CompletionDate?: string | null;
CreationDate?: string | null;
InventoryRetrievalParameters?: InventoryRetrievalJobDescription | null;
InventorySizeInBytes?: number | null;
JobDescription?: string | null;
JobId?: string | null;
JobOutputPath?: string | null;
OutputLocation?: OutputLocation | null;
RetrievalByteRange?: string | null;
SelectParameters?: SelectParameters | null;
SHA256TreeHash?: string | null;
SNSTopic?: string | null;
StatusCode?: StatusCode | null;
StatusMessage?: string | null;
Tier?: string | null;
VaultARN?: string | null;
}

§Properties

§
Action?: ActionCode | null
[src]

The job type. This value is either ArchiveRetrieval, InventoryRetrieval, or Select.

§
ArchiveId?: string | null
[src]

The archive ID requested for a select job or archive retrieval. Otherwise, this field is null.

§
ArchiveSHA256TreeHash?: string | null
[src]

The SHA256 tree hash of the entire archive for an archive retrieval. For inventory retrieval or select jobs, this field is null.

§
ArchiveSizeInBytes?: number | null
[src]

For an archive retrieval job, this value is the size in bytes of the archive being requested for download. For an inventory retrieval or select job, this value is null.

§
Completed?: boolean | null
[src]

The job status. When a job is completed, you get the job's output using Get Job Output (GET output).

§
CompletionDate?: string | null
[src]

The UTC time that the job request completed. While the job is in progress, the value is null.

§
CreationDate?: string | null
[src]

The UTC date when the job was created. This value is a string representation of ISO 8601 date format, for example "2012-03-20T17:03:43.221Z".

§
InventoryRetrievalParameters?: InventoryRetrievalJobDescription | null
[src]

Parameters used for range inventory retrieval.

§
InventorySizeInBytes?: number | null
[src]

For an inventory retrieval job, this value is the size in bytes of the inventory requested for download. For an archive retrieval or select job, this value is null.

§
JobDescription?: string | null
[src]

The job description provided when initiating the job.

§
JobId?: string | null
[src]

An opaque string that identifies an Amazon S3 Glacier job.

§
JobOutputPath?: string | null
[src]

Contains the job output location.

§
OutputLocation?: OutputLocation | null
[src]

Contains the location where the data from the select job is stored.

§
RetrievalByteRange?: string | null
[src]

The retrieved byte range for archive retrieval jobs in the form StartByteValue-EndByteValue. If no range was specified in the archive retrieval, then the whole archive is retrieved. In this case, StartByteValue equals 0 and EndByteValue equals the size of the archive minus 1. For inventory retrieval or select jobs, this field is null.

§
SelectParameters?: SelectParameters | null
[src]

Contains the parameters used for a select.

§
SHA256TreeHash?: string | null
[src]

For an archive retrieval job, this value is the checksum of the archive. Otherwise, this value is null.

The SHA256 tree hash value for the requested range of an archive. If the InitiateJob request for an archive specified a tree-hash aligned range, then this field returns a value.

If the whole archive is retrieved, this value is the same as the ArchiveSHA256TreeHash value.

This field is null for the following:

  • Archive retrieval jobs that specify a range that is not tree-hash aligned

  • Archival jobs that specify a range that is equal to the whole archive, when the job status is InProgress

  • Inventory jobs

  • Select jobs

§
SNSTopic?: string | null
[src]

An Amazon SNS topic that receives notification.

§
StatusCode?: StatusCode | null
[src]

The status code can be InProgress, Succeeded, or Failed, and indicates the status of the job.

§
StatusMessage?: string | null
[src]

A friendly message that describes the job status.

§
Tier?: string | null
[src]

The tier to use for a select or an archive retrieval. Valid values are Expedited, Standard, or Bulk. Standard is the default.

§
VaultARN?: string | null
[src]

The Amazon Resource Name (ARN) of the vault from which an archive retrieval was requested.