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

DescribeVaultOutput

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

Contains the Amazon S3 Glacier response to your request.

interface DescribeVaultOutput {
CreationDate?: string | null;
LastInventoryDate?: string | null;
NumberOfArchives?: number | null;
SizeInBytes?: number | null;
VaultARN?: string | null;
VaultName?: string | null;
}

§Properties

§
CreationDate?: string | null
[src]

The Universal Coordinated Time (UTC) date when the vault was created. This value should be a string in the ISO 8601 date format, for example 2012-03-20T17:03:43.221Z.

§
LastInventoryDate?: string | null
[src]

The Universal Coordinated Time (UTC) date when Amazon S3 Glacier completed the last vault inventory. This value should be a string in the ISO 8601 date format, for example 2012-03-20T17:03:43.221Z.

§
NumberOfArchives?: number | null
[src]

The number of archives in the vault as of the last inventory date. This field will return null if an inventory has not yet run on the vault, for example if you just created the vault.

§
SizeInBytes?: number | null
[src]

Total size, in bytes, of the archives in the vault as of the last inventory date. This field will return null if an inventory has not yet run on the vault, for example if you just created the vault.

§
VaultARN?: string | null
[src]

The Amazon Resource Name (ARN) of the vault.

§
VaultName?: string | null
[src]

The name of the vault.