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

SnapshotTierStatus

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

Provides information about a snapshot's storage tier.

interface SnapshotTierStatus {
ArchivalCompleteTime?: Date | number | null;
LastTieringOperationStatus?: TieringOperationStatus | null;
LastTieringOperationStatusDetail?: string | null;
LastTieringProgress?: number | null;
LastTieringStartTime?: Date | number | null;
OwnerId?: string | null;
RestoreExpiryTime?: Date | number | null;
SnapshotId?: string | null;
Status?: SnapshotState | null;
StorageTier?: StorageTier | null;
Tags: Tag[];
VolumeId?: string | null;
}

§Properties

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

The date and time when the last archive process was completed.

§
LastTieringOperationStatus?: TieringOperationStatus | null
[src]

The status of the last archive or restore process.

§
LastTieringOperationStatusDetail?: string | null
[src]

A message describing the status of the last archive or restore process.

§
LastTieringProgress?: number | null
[src]

The progress of the last archive or restore process, as a percentage.

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

The date and time when the last archive or restore process was started.

§
OwnerId?: string | null
[src]

The ID of the Amazon Web Services account that owns the snapshot.

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

Only for archived snapshots that are temporarily restored. Indicates the date and time when a temporarily restored snapshot will be automatically re-archived.

§
SnapshotId?: string | null
[src]

The ID of the snapshot.

§
Status?: SnapshotState | null
[src]

The state of the snapshot.

§
StorageTier?: StorageTier | null
[src]

The storage tier in which the snapshot is stored. standard indicates that the snapshot is stored in the standard snapshot storage tier and that it is ready for use. archive indicates that the snapshot is currently archived and that it must be restored before it can be used.

§
Tags: Tag[]
[src]

The tags that are assigned to the snapshot.

§
VolumeId?: string | null
[src]

The ID of the volume from which the snapshot was created.